Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. -- btw, it only steals GEARS that are INSIDE lighting... and by that i mean that it wont give you gear that will be in models or stuff that are located in lighting... and of course it also wont give you gears from workspace...
  2. -- (it will COPY the gears into your backpack, to your startergear, and incase you want to give gears to multiple people or something, it also keeps whatever's in lighting in there too...)
  3. -- update: works for names with that underscore ( _ ) too.... for example: SOME_ONE.
  4. M = game.Players:FindFirstChild("goldenfreezabr") -- your name here
  5. model = game.Lighting
  6. children = model:GetChildren()
  7. for i =1, #children do
  8. if children[i] ~= nil then
  9. children[i].Parent = M.StarterGear
  10. b = children[i]:Clone()
  11. b.Parent = M.Backpack
  12. p = children[i]:Clone()
  13. p.Parent = game.Lighting
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement