So basically, when you press a gui button your characters glove color will change. I have this part down but how can I index the localplayer inside of the Workspace? So it knows who you are? Sorry if this is confusing but this is what I have so far.
script.Parent.TextButton.MouseButton1Click:Connect(function() game.Workspace.(this is where i want to index the local player inside of the workspace).GloveV8.Handle.BrickColor = BrickColor.Random() end)
LocalPlayer.Character tells it to look inside the player's character model located in workspace.
script.Parent.TextButton.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.GloveV8.Handle.BrickColor = BrickColor.Random() end)
I'm not the best at scripting, so if I'm wrong feel free to correct me.