I have a person build place. And I want any one to join it. So its open, but I use F3X's build tools and don't want people greifing my place. Is there a local script I could use to delete the tool unless they have a specific username/usernames?
-Forever learning.
access = {"shawnyg", "bob"} game.Players.PlayerAdded:connect(function(plr) for i,v in pairs(access) do if plr.Name == v then tool = game.Lighting["ToolNameHere"] tool:clone().Parent = plr.Backpack --tool:clone().Parent = plr.StarterGear --Above is if you want it to stay with them end end end)