Advertisement
LukeSXGenix

Ghost Rider

Feb 19th, 2017
1,073
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local Character = Player.Character
  3. local mouse=Player:GetMouse()
  4. local Mesh = Instance.new("SpecialMesh", Character.Torso)
  5. Mesh.MeshType = "FileMesh"
  6. Mesh.Scale = Vector3.new(7, 7, 7)
  7. Mesh.MeshId = "http://www.roblox.com/asset/?id=6552202"
  8. Mesh.TextureId = "http://www.roblox.com/asset/?id=6552149"
  9. Mesh.VertexColor = Vector3.new(0.7, 0, 0)
  10. local PE = Instance.new("ParticleEmitter", Character.Torso)
  11. PE.Name = "Flame"
  12. local c1 = Color3.new(0, 0, 0)
  13. local c2 = Color3.new(144,0,0)
  14. PE.Color = ColorSequence.new(c1)
  15. PE.EmissionDirection = "Bottom"
  16. PE.Texture = "rbxassetid://290556384"
  17. PE.LightEmission = 0.850
  18. PE.Speed = NumberRange.new(0)
  19. PE.RotSpeed = NumberRange.new(500)
  20. PE.Size = NumberSequence.new(.5)
  21. PE.Lifetime = NumberRange.new(1)
  22. PE.Rate = 200
  23. PE.VelocitySpread = 50
  24. repeat wait() until Character ~= nil
  25. Character:WaitForChild("Humanoid").MaxHealth = math.huge
  26. Character.Head:WaitForChild("face"):Destroy()
  27. Character.Torso:WaitForChild("roblox"):Destroy()
  28. Character:WaitForChild("Humanoid").WalkSpeed = 25
  29. Character:WaitForChild("Head").Transparency = 1
  30. Character:WaitForChild("Torso").Transparency = 0
  31. Character:WaitForChild("Left Arm").Transparency = 1
  32. Character:WaitForChild("Right Arm").Transparency = 1
  33. Character:WaitForChild("Left Leg").Transparency = 1
  34. Character:WaitForChild("Right Leg").Transparency = 1
  35. local a = Character:getChildren()
  36. for i = 1, #a do
  37. if (a[i].ClassName == "Hat") then
  38. a[i]:remove()
  39. end
  40. end
  41. mouse.KeyDown:connect(function(key)
  42. if key:byte() == 48 then
  43. Character:WaitForChild("Humanoid").JumpPower = 70
  44. Character:WaitForChild("Humanoid").WalkSpeed = 50
  45. Character:WaitForChild("Head").Transparency = 1
  46. Character:WaitForChild("Torso").Transparency = 0.9
  47. Character:WaitForChild("Left Arm").Transparency = 1
  48. Character:WaitForChild("Right Arm").Transparency = 1
  49. Character:WaitForChild("Left Leg").Transparency = 1
  50. Character:WaitForChild("Right Leg").Transparency = 1
  51. elseif key== "q" then
  52. PE.Enabled = false
  53. elseif key== "e" then
  54. PE.Enabled = true
  55. elseif key== "x" then
  56. PE.Color = ColorSequence.new(c1)
  57. PE.LightEmission = 0.850
  58. PE.Speed = NumberRange.new(0)
  59. PE.Size = NumberSequence.new(.5)
  60. PE.Rate = 200
  61. elseif key== "z" then
  62. PE.Color = ColorSequence.new(c2)
  63. PE.LightEmission = 0.25
  64. PE.Speed = NumberRange.new(5)
  65. PE.Size = NumberSequence.new(.3)
  66. PE.Rate = 500
  67. end
  68. end)
  69.  
  70. mouse.KeyUp:connect(function(key)
  71. if key:byte() == 48 then
  72. Character:WaitForChild("Humanoid").JumpPower = 50
  73. Character:WaitForChild("Humanoid").WalkSpeed = 25
  74. Character:WaitForChild("Head").Transparency = 1
  75. Character:WaitForChild("Torso").Transparency = 0
  76. Character:WaitForChild("Left Arm").Transparency = 1
  77. Character:WaitForChild("Right Arm").Transparency = 1
  78. Character:WaitForChild("Left Leg").Transparency = 1
  79. Character:WaitForChild("Right Leg").Transparency = 1
  80. end
  81. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement