Advertisement
memberhero

thing

Nov 18th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. wait(1)
  2. Player = game:GetService("Players").LocalPlayer
  3. Character = Player.Character
  4. Mouse = Player:GetMouse()
  5. Enabled = true
  6.  
  7. Mouse.KeyDown:connect(function(key)
  8. if Enabled == false then return end
  9. key = key:lower()
  10. if key == "z" then
  11. Enabled = false
  12.  
  13. Fireball = Instance.new("Part")
  14. Fireball.Shape = "Ball"
  15. Fireball.Material = "Neon"
  16. Fireball.BrickColor = BrickColor.new("Bright red")
  17. Trail = Instance.new("Trail")
  18. Trail.Parent = Fireball
  19.  
  20. Attach = Instance.new("Attachment")
  21. Attach.Parent = Fireball
  22. Fireball.Parent = Character
  23.  
  24.  
  25.  
  26.  
  27. Fireball.CFrame = Character.Torso.CFrame*CFrame.new(0,0,-5)
  28. BV = Instance.new("BodyVelocity")
  29. BV.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  30. BV.velocity = Character.Torso.CFrame.lookVector*100
  31. BV.Parent = Fireball
  32. Fireball.Touched:connect(function(hit)
  33. hit.Parent.Humanoid:TakeDamage(5)
  34. end)
  35. end
  36. Enabled = true
  37. end)
  38. Mouse.KeyDown:connect(function(key)
  39. if Enabled == false then return end
  40. key = key:lower()
  41. if key == "x" then
  42.  
  43.  
  44.  
  45. Aura = Instance.new("ParticleEmitter")
  46. Aura.Texture = "rbxassetid://269782022"
  47.  
  48. Aura.Parent = Player.Character.Torso
  49.  
  50. end
  51. end)
  52. Mouse.KeyDown:connect(function(key)
  53. if Enabled == false then return end
  54. key = key:lower()
  55. if key == "c" then
  56. tool = Instance.new("Tool")
  57. tool.Name = "Hammer"
  58. tool.ToolTip = "Click Anywhere To Spawn A Part"
  59. tool.Parent = Player.Backpack
  60. handle = Instance.new("Part")
  61. handle.Name = "Handle"
  62. handle.Parent = tool
  63. mesh = Instance.new("SpecialMesh")
  64. mesh.MeshId = "http://www.roblox.com/asset/?id=16198309"
  65. mesh.TextureId = "http://www.roblox.com/asset/?id=16198294"
  66. mesh.Parent = handle
  67. tool.Activated:connect(function()
  68. part = Instance.new("Part")
  69. part.Parent = game.Workspace
  70. part.Touched:connect(function(hit)
  71. hit.Parent.Humanoid:TakeDamage(5)
  72. end)
  73. end)
  74. end
  75. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement