01 | local Tool = script.Parent |
02 | local Gui = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ):WaitForChild( "MENU" ):WaitForChild( "Home" ) |
03 |
04 | Tool.Equipped:Connect( function () |
05 | Gui.Visible = true |
06 | end ) |
07 |
08 | Tool.Unequipped:Connect( function () |
09 | Gui.Visible = false |
10 | end ) |
Instead of accessing the gui from the LocalPlayer, try to access it like this:
01 | local Tool = script.Parent |
02 | local Gui = game.StarterGui:WaitForChild( "MENU" ):WaitForChild( "Home" ) |
03 |
04 | Tool.Equipped:Connect( function () |
05 | Gui.Visible = true |
06 | end ) |
07 |
08 | Tool.Unequipped:Connect( function () |
09 | Gui.Visible = false |
10 | end ) |