lolita5432

bass drop

Dec 30th, 2017
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. local s = Instance.new("Sound")
  2.  
  3. s.Name = "Sound"
  4. s.SoundId = "http://www.roblox.com/asset/?id=145009130"
  5. s.Volume = math.huge
  6. s.Looped = true
  7. s.archivable = false
  8. s.Parent = game.Workspace
  9. s:play()
  10.  
  11. wait(5)
  12.  
  13. for _,v in pairs(game.Players:GetChildren()) do
  14. local Force1 local Force2 repeat Force1 = math.random(-92999,92999)
  15. until math.abs(Force1) >= 5555
  16. repeat Force2 = math.random(-92999,92999)
  17. until math.abs(Force2) >= 5555
  18. v.Character.Humanoid.PlatformStand = true v.Character.Torso.Velocity = Vector3.new(0,0,0)
  19.  
  20. local Fling = Instance.new('BodyForce', v.Character.Torso)
  21. Fling.Name = 'Flung'
  22. Fling.force = Vector3.new(Force1*4,9999*5,Force2*4)
  23. end
Add Comment
Please, Sign In to add comment