My screen gui won't display
script.Parent.Equipped:Connect(function() script.Parent.Parent.Parent.StarterGui["Device Screen"].Enabled = true end) script.Parent.Unequipped:Connect(function() script.Parent.Parent.Parent.PlayerGui["Device Screen"].Enabled = false end)
I have tried startergui and playergui
You are going to be using PlayerGui
but instead of Script.Parent
Your going to need to use game.Players.LocalPlayer.PlayerGui
Full example in local script in your tool
game.Players.LocalPlayer.PlayerGui["Device Screen"].Enabled = true --For the Unequipped function copy this and change it to false
Hope this Helps!!
You have set the PlayerGui (which is the correct one) to false instead of true.