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.
01 | access = { "shawnyg" , "bob" } |
02 |
03 | game.Players.PlayerAdded:connect( function (plr) |
04 | for i,v in pairs (access) do |
05 | if plr.Name = = v then |
06 | tool = game.Lighting [ "ToolNameHere" ] |
07 | tool:clone().Parent = plr.Backpack |
08 | --tool:clone().Parent = plr.StarterGear |
09 | --Above is if you want it to stay with them |
10 | end |
11 | end |
12 | end ) |