Hello forum members, I’ve experienced an issue while trying to make a phone GUI. I’ve been trying to make the phone GUI enable once you equip a tool and disable it when the tool gets unequipped. All the forum posts I’ve tried haven’t worked for me.
Current Code:
script.Parent.Equipped:Connect(function(plr)
plr.PlayerGui.PhoneGui.Enabled = true
end)
script.Parent.Unequipped:Connect(function(plr)
plr.PlayerGui.PhoneGui.Enabled = false
end)