Advertisement
ZKiller

DOUBLE BOOST SCRIPT!!1111

Apr 23rd, 2018
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. local db = false
  2. local mouse = game.Players.LocalPlayer:GetMouse()
  3. local music = Instance.new("Sound")
  4. music.Parent = game.Players.LocalPlayer.Character.Torso
  5. music.Looped = true
  6. music.Volume = 1
  7. music.SoundId = "rbxassetid://1192337951"
  8. local friend = Instance.new("Model")
  9. friend.Parent = game.Players.LocalPlayer.Character
  10. friend.Name = "Friend"
  11. local d = Instance.new("Part")
  12. d.CanCollide = false
  13. d.Parent = friend
  14. d.BrickColor = BrickColor.new("Bright yellow")
  15. d.Material = Enum.Material.SmoothPlastic
  16. d.Size = Vector3.new(1.3,1.3,1.3)
  17. local dw = Instance.new("Weld")
  18. dw.Parent = d
  19. dw.Part0 = game.Players.LocalPlayer.Character["Head"]
  20. dw.Part1 = d
  21. dw.C1 = CFrame.new(6,0,0)
  22.  
  23. local d = Instance.new("Part")
  24. d.CanCollide = false
  25. d.Parent = friend
  26. d.BrickColor = BrickColor.new("Bright yellow")
  27. d.Material = Enum.Material.SmoothPlastic
  28. d.Size = Vector3.new(1,2,1)
  29. local dw = Instance.new("Weld")
  30. dw.Parent = d
  31. dw.Part0 = game.Players.LocalPlayer.Character["Left Arm"]
  32. dw.Part1 = d
  33. dw.C1 = CFrame.new(6,0,0)
  34.  
  35. local d = Instance.new("Part")
  36. d.CanCollide = false
  37. d.Parent = friend
  38. d.BrickColor = BrickColor.new("Bright yellow")
  39. d.Material = Enum.Material.SmoothPlastic
  40. d.Size = Vector3.new(1,2,1)
  41. local dw = Instance.new("Weld")
  42. dw.Parent = d
  43. dw.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  44. dw.Part1 = d
  45. dw.C1 = CFrame.new(6,0,0)
  46.  
  47. local d = Instance.new("Part")
  48. d.CanCollide = false
  49. d.Parent = friend
  50. d.BrickColor = BrickColor.new("Br. yellowish green")
  51. d.Material = Enum.Material.SmoothPlastic
  52. d.Size = Vector3.new(1,2,1)
  53. local dw = Instance.new("Weld")
  54. dw.Parent = d
  55. dw.Part0 = game.Players.LocalPlayer.Character["Left Leg"]
  56. dw.Part1 = d
  57. dw.C1 = CFrame.new(6,0,0)
  58.  
  59. local d = Instance.new("Part")
  60. d.CanCollide = false
  61. d.Parent = friend
  62. d.BrickColor = BrickColor.new("Br. yellowish green")
  63. d.Material = Enum.Material.SmoothPlastic
  64. d.Size = Vector3.new(1,2,1)
  65. local dw = Instance.new("Weld")
  66. dw.Parent = d
  67. dw.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
  68. dw.Part1 = d
  69. dw.C1 = CFrame.new(6,0,0)
  70.  
  71. local t = Instance.new("Part")
  72. t.Parent = friend
  73. t.BrickColor = BrickColor.new("Bright blue")
  74. t.Material = Enum.Material.SmoothPlastic
  75. t.Size = Vector3.new(2,2,1)
  76. local tw = Instance.new("Weld")
  77. tw.Parent = t
  78. tw.Part0 = game.Players.LocalPlayer.Character["Torso"]
  79. tw.Part1 = t
  80. tw.C1 = CFrame.new(6,0,0)
  81. function kill(hit)
  82. local h = hit.Parent:findFirstChildOfClass("Humanoid")
  83. if h ~= nil and db == true then
  84. h.Health = 0
  85. h.MaxHealth = 1
  86. hit.Parent.Head.Position = hit.Parent.Head.Position + Vector3.new(0,1,0)
  87. end
  88. end
  89. function keyDown(k)
  90. if k == "e" then
  91. if db == false then
  92. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = math.random(100,500)
  93. music:Play()
  94. db = true
  95. else
  96. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 22
  97. music:Stop()
  98. db = false
  99. end
  100. end
  101. end
  102. mouse.KeyDown:connect(keyDown)
  103. game.Players.LocalPlayer.Character.Torso.Touched:connect(kill)
  104. t.Touched:connect(kill)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement