So i'm trying to make this morph GUI but everytime i fix an error i get a new one and im really stumped, what am i doing wrong?
1 | Player = script.Parent.Parent.Parent |
2 | Me = Player.Character or Player.CharacterAdded:wait() |
3 | local Morphs = script.Parent.Morphy:GetChildren() |
4 | script.Parent.MouseButton 1 Click:connect( function (r) |
If you're running in a localscript, which you should be if it's a child of a Gui, you can use
game.Players.LocalPlayer
I would recommend you use a localscript under the Gui which fires a remote whenever you need server access.
You forgot the "local" before Player and Me. Here's the fixed script.
1 | local Player = script.Parent.Parent.Parent |
2 | local Me = Player.Character or Player.CharacterAdded:wait() |
3 | local Morphs = script.Parent.Morphy:GetChildren() |
4 | script.Parent.MouseButton 1 Click:connect( function (r) |
Please reply if it worked and mark it as the answer.
Thanks.