Advertisement
AnimeHackz21

FireBall

May 29th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Mouse = Player:GetMouse()
  3.  
  4. Mouse.KeyDown:connect(function(key)
  5. key = key:lower()
  6. if key == "r" then
  7. script.Disabled = true
  8. game:GetService("Chat"):Chat(Player.Character.Head, "Flame Ball", "Red")
  9. local x = Instance.new("Part", game.Workspace)
  10. x.Anchored = false
  11. x.CanCollide = true
  12. x.Shape = "Ball"
  13. x.TopSurface = 0
  14. x.BottomSurface = 0
  15. x.BrickColor = BrickColor.new("Bright orange")
  16. x.Size = Vector3.new(5,5,5)
  17. x.CFrame = Player.Character.Torso.CFrame*CFrame.new(0,0,-7)
  18. x.Transparency = 0.4
  19. local e = script.E:Clone()
  20. e.Parent = x
  21. local f = Instance.new("BodyVelocity", x)
  22. f.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  23. f.velocity = Player.Character.Torso.CFrame.lookVector*80
  24. game.Debris:AddItem(x, 3)
  25. wait(4)
  26. script.Disabled = false
  27. end
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement