What do you want to achieve? Keep it simple and clear!
I wanna make a tween work
What is the issue? Include screenshots / videos if possible!
Issue is, it’s just don’t tween. I used script which used in my other script. But no it’s don’t work!
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tryed to remake a script, but still no. No i didn’t
local Button = script.Parent
local HalloweenGUI = game.Players.LocalPlayer.PlayerGui.HalloweenEventGUI.Frame
local button = script.Parent
local clicks = 0
local DB = false
local TweenService = game:GetService("TweenService")
Button.MouseButton1Click:Connect(function()
HalloweenGUI:TweenPosition(UDim2.new(0.05, 0,0.046, 0),"Out","Sine",2,false)
end)
removed already, idk still don’t print anything here script
local Button = script.Parent
local HalloweenGUI = game.Players.LocalPlayer.PlayerGui.HalloweenEventGUI.Frame
local clicks = 0
local DB = false
local TweenService = game:GetService("TweenService")
Button.MouseButton1Click:Connect(function()
print("GUI is Moving!")
HalloweenGUI:TweenPosition(UDim2.new(0.05, 0,0.046, 0),"Out","Sine",2,false)
end)