Advertisement
AlexTheScripter

Untitled

Dec 23rd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. You = 'MythicalxGodzYT'
  2. YourGun = 'AUG HBAR'
  3. TeleportTime = 10 -- teleport all guns every 10 seconds (feel free to change)
  4.  
  5. while wait(TeleportTime) do
  6. for i,v in ipairs(workspace.Ignore.GunDrop:GetChildren()) do
  7. if v.Name == 'Dropped' then
  8. v.Gun.Value = YourGun
  9. v:MoveTo(workspace[You].Torso.Position)
  10. end
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement