Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I rectify GUI tweening issues?

Asked by 4 years ago
Edited 4 years ago

I'm attempting to create a GUI that appears on the screen once the player joins the game however after rewriting my script many times and yet still nothing happens when it's run.

local frame = game.Workspace.CashMoney.Frame
game.Players.PlayerAdded:Connect(function(plr)
    wait()
    local gui = script.Parent.Parent:Clone()
    gui.Parent = plr.PlayerGui
    frame:TweenPosition(UDim2.new(0.008, 0,0.565, 0),"InOut","Bounce")
end)

The root of the GUI is: Workspace | ScreenGUI | Frame | Local Script, TextButton, TextLabel

0
There needs to be info. WHAT does not work? Is there an exception? A warning? Have you tried debugging? What type of script is the one you are showing? incapaz 195 — 4y

Answer this question