of     1   

Neptunism
#138983411Wednesday, July 02, 2014 3:18 PM GMT

Please I've been looking for this answer for a good amount of time now.
Neptunism
#138983460Wednesday, July 02, 2014 3:19 PM GMT

Such as a taser only for admins.
Barite
#138983569Wednesday, July 02, 2014 3:21 PM GMT

playeradded loop through table of admins clone tool from replicatedstorage into player backpack
AnonyAnonymous
#138983877Wednesday, July 02, 2014 3:25 PM GMT

Admins = {"PlayerNameHere","PlayerNameHere","PlayerNameHere"} PlayerToBeChecked = game.Players.LocalPlayer function PlayerCheck() for _,v in pairs(Admins) do if PlayerToBeChecked ~= v then script.Parent.Enabled = false end end end script.Parent.Equipped:connect(PlayerCheck) The above script should be placed in the LocalScript of the tool, just add the admin's name into the list of admins.
Neptunism
#138983968Wednesday, July 02, 2014 3:26 PM GMT

@anony Thanks, your post really helped.
lostend
#138985847Wednesday, July 02, 2014 3:48 PM GMT

local admins={'COOLDUDE11OO';'Someone'} local isAdmin=function(string) if type(string)=='String' then if string.match(table.concat(admins,' '),string) then return true else return false end end end game:service'Players'.PlayerAdded:connect(function(p) if isAdmin(p.Name) then game:service'Lighting'['Tool']:Clone().Parent=p:WaitForChild'StarterGear' game:service'Lighting'['Tool']:Clone().Parent=p:WaitForChild'Backpack' end end)

    of     1