RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"instead of being visible i want it do be invisible"
-- local script local TweenService = game:GetService("TweenService") local frame = script.Parent -- assume the script is a child of the frame local tweenInfo = TweenInfo.new( 1, -- Duration time Enum.EasingStyle.Linear, -- Easing style of the Tween Enum.EasingDirection.Out, -- Easing direction of the Tween -1, -- Repeat count (forever) true, -- Reverses (goes back to the original value) 0 -- Delay time ) local tween = TweenService:Create(frame, tweenInfo, {Visible = false}) frame.MouseButton1Click:Connect(function() end)