Advertisement
Wobble2

F3X

Jul 5th, 2016
4,027
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local group = 1139407
  2. local rank = 249
  3. local storage = game.ServerStorage
  4.  
  5. game.Players.PlayerAdded:connect(function(player)
  6. if player:IsInGroup(group) and player:GetRankInGroup(group) >= rank then
  7. player:WaitForChild("Backpack")
  8. local clone = storage:FindFirstChild("Building Tools"):clone()
  9. clone.Parent = player.Backpack
  10. local clone2 = storage:FindFirstChild("Building Tools"):clone()
  11. clone2.Parent = player.StarterGear
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement