of     1   

Chewie98seg
#215838415Wednesday, May 03, 2017 6:02 AM GMT

script.Parent.MouseButton1Click:connect(function() wait(1) game.StarterGui.Tutorial.Box.Visible = true end) What is supposed to happen is when you click the button a frame will pop up I'm new to scripting to pls help me :)
PhantomVisual
#215838518Wednesday, May 03, 2017 6:06 AM GMT

script.Parent.MouseButton1Click:connect(function() wait(1) game.StarterGui.Tutorial.Box.Visible = true end) So this doesn't work because the StarterGui clones the objects parented to it into the Player. What you need to do is get the Player and the PlayerGui to edit it. --game.Players.LocalPlayer is only accessed with a local script. local Player = game.Players.LocalPlayer --gets the player that has this script local PlayerGui = Player.PlayerGui --gets the Player's Guis script.Parent.MouseButton1Click:connect(function() --run when clicked wait(1) PlayerGui.Tutorial.Box.Visible = true --visible end)
Chewie98seg
#215838781Wednesday, May 03, 2017 6:18 AM GMT

where do I put this script?
Chewie98seg
#215838787Wednesday, May 03, 2017 6:18 AM GMT

nvm
Chewie98seg
#215838900Wednesday, May 03, 2017 6:22 AM GMT

thanks
Frqsh
#215841145Wednesday, May 03, 2017 8:25 AM GMT

e.e

    of     1