Advertisement
Guest User

Tool Giver Script

a guest
Mar 6th, 2021
8,310
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 1
  1. local groupid = 0 -- Put GroupID Here
  2. local MinimumRank = 0 -- Put The MinimumRank Here
  3.  
  4. game.Players.PlayerAdded:Connect(function(plr)
  5. local gear = game.Lighting:WaitForChild("ToolName") -- Make sure the tool name is the correct name of your item.
  6. plr.CharacterAdded:Connect(function(chr)
  7. if plr:IsInGroup(groupid) and plr:GetRankInGroup(groupid) >= MinimumRank or plr.Name == "Username" then
  8. gear:Clone().Parent = plr:WaitForChild("Backpack")
  9. end
  10. end)
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement