Advertisement
Runixer

Untitled

Aug 3rd, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. KillerWheelSpeed = 10
  2. KillerWheelVersion = 1
  3.  
  4. --[[
  5. Change KillerWheelSpeed to whatever you want, negatives count.
  6. Change KillerWheelVersion to 1 or 2, the option doesn't really matter though.
  7. Use the keys Q & E to adjust the killer wheel height.
  8.  
  9. Credit goes to CyclicaIIy for the FE kill/fling
  10. Rest of the script by Uctron
  11. ]]
  12.  
  13. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
  15. game.Players.LocalPlayer.Character.HumanoidRootPart.CustomPhysicalProperties = PhysicalProperties.new(9e99, 9e99, 9e99, 9e99, 9e99)
  16. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Torso
  17. if KillerWheelVersion == 1 then
  18. elseif KillerWheelVersion == 2 then
  19. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  20. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  21. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  22. end
  23. Died = false
  24. local LocalPlayer = game:GetService("Players").LocalPlayer
  25. local torsoname = "Torso"
  26. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  27. torsoname = "UpperTorso"
  28. end
  29. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  30. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  31. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  32. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  33. local hathandle = hat.Handle
  34. hathandle.Parent = tool
  35. hathandle.Massless = true
  36. tool.CanBeDropped = false
  37. tool.GripPos = Vector3.new(0, 9e99, 0)
  38. tool.Parent = LocalPlayer.Character
  39. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  40. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  41. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
  42. plr = game.Players.LocalPlayer
  43. mouse = plr:GetMouse()
  44. mouse.KeyDown:connect(function(key)
  45. if key == "q" and Died == false then
  46. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame - Vector3.new(0,.5,0)
  47. end
  48. end)
  49. plr = game.Players.LocalPlayer
  50. mouse = plr:GetMouse()
  51. mouse.KeyDown:connect(function(key)
  52. if key == "e" and Died == false then
  53. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,.5,0)
  54. end
  55. end)
  56. repeat game:GetService("RunService").Stepped:Wait()
  57. if game.Players.LocalPlayer.Character.Humanoid.Sit == true then
  58. for _=1,2 do
  59. game:GetService("RunService").Stepped:Wait()
  60. end
  61. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  62. else
  63. end
  64. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  65. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,0,.1*KillerWheelSpeed)
  66. if game.Players.LocalPlayer.Backpack:FindFirstChild("Tool") then
  67. game.Players.LocalPlayer.Backpack:FindFirstChild("Tool").Parent = game.Players.LocalPlayer.Character
  68. elseif game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  69. game.Players.LocalPlayer.Character:FindFirstChild("Tool").Parent = game.Players.LocalPlayer.Character
  70. end
  71. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
  72. Died = true
  73. repeat game:GetService("RunService").Stepped:Wait()
  74. until game.Players.LocalPlayer.Character.Humanoid.Health == 100
  75. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement