Advertisement
xtremscriptsxd

Untitled

Mar 18th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. char = plr.Character
  3. hum = char.Humanoid
  4. mouse = plr:GetMouse()
  5. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  6. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  7. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  8.  
  9. mouse.KeyDown:connect(function(key)
  10. KeyUsed(key)
  11. end)
  12. local deb = 1
  13. function KeyUsed(key)
  14. if key == "e" and deb == 1 then
  15. deb = deb+1
  16. Character = game.Players.LocalPlayer.Character
  17. function chat(str)
  18. game:GetService("Chat"):Chat(game.Players.LocalPlayer.Character.Head, str, "Red")
  19. end
  20. chat("Inferno Mode!")
  21. local Glow1 = Color3.new(255,255,255)
  22. local Glow2 = Color3.new(255,255,255)
  23. local siz={
  24. local pt1 = NumberSequenceKeypoint.new(0,5,0)
  25. local pt2 = NumberSequenceKeypoint.new(1,0,0)
  26. }
  27. local tra={
  28. local pt1a = NumberSequenceKeypoint.new(0,0.5,0)
  29. local pt2a = NumberSequenceKeypoint.new(1,1,1)
  30. }
  31. GlowParticle = Instance.new("ParticleEmitter",Character.Torso)
  32. GlowParticle.Color = ColorSequence.new(Glow1, Glow2)
  33. GlowParticle.Size = NumberSequence.new(siz)
  34. GlowParticle.LightEmission = 0
  35. GlowParticle.Texture = "http://www.roblox.com/asset/?id=665121704"
  36. GlowParticle.Transparency = NumberSequence.new(tra)
  37. GlowParticle.LockedToPart = true
  38. GlowParticle.Lifetime = NumberRange.new(0.5)
  39. GlowParticle.Rate= 0.001
  40. GlowParticle.Speed = NumberRange.new(0)
  41. elseif key == "q" and deb == 2 then
  42. GlowParticle.Parent = nil
  43. deb = 1
  44.  
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement