game.Workspace.Stand.WandDealer.Value.Changed:Connect(function() if game.Workspace.Stand.WandDealer.Value.Value == true then script.Parent.Enabled = true end end)
How exactly can I fix this? Also it activates once a value is changed. I want it to appear only to one person but it doesn't work after I've tried to change it.
I believe I know how you can fix this. There is probably more ways, but I recommend this one.
--Make sure to turn Visable off on the GUI. local player = game.Players.LocalPlayer local playerName = " " --Insert player name here. local GuiName = game.StarterGui. --Insert GUI name here. if player.Name == playerName then GuiName.Visable = true end
I hope this works out for you, and best of luck! If this script doesn't work, it's probably because I have some more to learn. But it should work.