Advertisement
memesbruh03

memes

Sep 28th, 2016
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.83 KB | None | 0 0
  1. while true do
  2. wait(0.2)
  3. local m = Instance.new('Model',workspace)
  4. m.Name = "I LIKE MEMES ARE THE PERCENTAGE OF " ..math.random(1,9999999)
  5. local hum = Instance.new("Humanoid",m)
  6. hum.Health = 0
  7. hum.MaxHealth = 0
  8. local p = Instance.new('Part',m)
  9. p.FormFactor = "Custom"
  10. p.TopSurface="Smooth"
  11. p.BottomSurface = "Smooth"
  12. p.Name = "Head"
  13. p.Size = Vector3.new(5,5,5)
  14. p.CFrame = CFrame.new(math.random(1,300),1000,math.random(1,300))
  15. p.BrickColor = BrickColor.random()
  16. local s = Instance.new("Sound", p)
  17. s.SoundId = "http://www.roblox.com/Asset/?Id=308632199"
  18. s.Volume = 10
  19. s.Pitch = 1
  20. s:Play()
  21. local x = Instance.new("BodyPosition",p)
  22. game:GetService('RunService').Stepped:connect(function()
  23. x.Position = Vector3.new(math.random(-100,50),5,math.random(-100,100))
  24. x.P = 5000000
  25. x.maxForce = Vector3.new(500000,500000,500000)
  26. end)
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement