Advertisement
JohnJohniamm55

New Paste test 1 makes a ball follow you

Mar 26th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.64 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. mouse = plr:GetMouse()
  3. function key(key)
  4. key = key:lower()
  5. if key == "g" then
  6. game:GetService("Chat"):Chat(plr.Character.Head, "GOD GIVE ME POWER")
  7. wait(1)
  8. game:GetService("Chat"):Chat(plr.Character.Head, "Cmon Gods NOW!!!!!!!!!!!!!")
  9. wait(1)
  10. k = Instance.new("Part",game.Workspace)
  11. k.CanCollide = false
  12. k.Shape = "Ball"
  13. for i = 1, 50 do
  14. p = Instance.new("Fire",k)
  15. p.Size = "50"
  16. while true do
  17. k.BrickColor = BrickColor.new(math.random(), math.random(), math.random())
  18. k.CFrame = CFrame.new(plr.Character["Torso"].Position+Vector3.new(0,5,0))
  19. coroutine.yield()
  20. end
  21. end
  22. end
  23. end
  24. mouse.KeyDown:connect(key)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement