Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- wait(0.2)
- local m = Instance.new('Model',workspace)
- m.Name = "I LIKE MEMES ARE THE PERCENTAGE OF " ..math.random(1,9999999)
- local hum = Instance.new("Humanoid",m)
- hum.Health = 0
- hum.MaxHealth = 0
- local p = Instance.new('Part',m)
- p.FormFactor = "Custom"
- p.TopSurface="Smooth"
- p.BottomSurface = "Smooth"
- p.Name = "Head"
- p.Size = Vector3.new(5,5,5)
- p.CFrame = CFrame.new(math.random(1,300),1000,math.random(1,300))
- p.BrickColor = BrickColor.random()
- local s = Instance.new("Sound", p)
- s.SoundId = "http://www.roblox.com/Asset/?Id=308632199"
- s.Volume = 10
- s.Pitch = 1
- s:Play()
- local x = Instance.new("BodyPosition",p)
- game:GetService('RunService').Stepped:connect(function()
- x.Position = Vector3.new(math.random(-100,50),5,math.random(-100,100))
- x.P = 5000000
- x.maxForce = Vector3.new(500000,500000,500000)
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement