Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. Player = game:GetService'Players'.LocalPlayer
  2. Character = Player.Character or Player.CharacterAdded:Wait()
  3. Mouse = Player.GetMouse()
  4. Enabled = true
  5. ButtonDown = true
  6. Mouse.KeyDown:connect(function(key)
  7. if Enabled == false then return end
  8. key = key:lower()
  9. if key == "q" then
  10. Enabled = false
  11. local Fireball = Instance.new("Part")
  12. Fireball.BrickColor = BrickColor.new("Bright red")
  13. Fireball.Material = "Neon"
  14. Fireball.Shape = "Ball"
  15. Fireball.Parent = Character
  16.  
  17. Fireball.CFrame = Character.HumanoidRootPart.CFrame*CFrame.new(0,0,-5)
  18. BV = Instance.new("BodyVelocity")
  19. BV.maxforce = Vector3.new(math.huge,math.huge,math.huge)
  20. BV.velocity = Character.HumanoidRootPart.CFrame.lookVector*100
  21. BV.Parent = Fireball
  22. end
  23.  
  24. wait(1)
  25. Enabled = true
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement