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

Local Script in tools not working after refresh. Any answers?

Asked by
ghxstlvty 133
4 years ago
Edited 4 years ago
01local Tool = script.Parent
02local Gui= game.Players.LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("MENU"):WaitForChild("Home")
03 
04Tool.Equipped:Connect(function()
05Gui.Visible = true
06end)
07 
08Tool.Unequipped:Connect(function()
09Gui.Visible = false
10end)

1 answer

Log in to vote
1
Answered by
srimmbow 241 Moderation Voter
4 years ago

Instead of accessing the gui from the LocalPlayer, try to access it like this:

01local Tool = script.Parent
02local Gui= game.StarterGui:WaitForChild("MENU"):WaitForChild("Home")
03 
04Tool.Equipped:Connect(function()
05Gui.Visible = true
06end)
07 
08Tool.Unequipped:Connect(function()
09Gui.Visible = false
10end)
Ad

Answer this question