Advertisement
27x34k

autojump RBLX

Apr 8th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Jumper = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextBox = Instance.new("TextBox")
  9. local UICorner = Instance.new("UICorner")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local onoff = Instance.new("TextButton")
  12. local UICorner_3 = Instance.new("UICorner")
  13.  
  14. --Properties:
  15.  
  16. Jumper.Name = "Jumper"
  17. Jumper.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. Jumper.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Frame.Parent = Jumper
  21. Frame.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  22. Frame.Position = UDim2.new(0.855644643, 0, 0.61988306, 0)
  23. Frame.Size = UDim2.new(0, 234, 0, 165)
  24.  
  25. TextBox.Parent = Frame
  26. TextBox.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  27. TextBox.Position = UDim2.new(0.0726495683, 0, 0.0363636315, 0)
  28. TextBox.Size = UDim2.new(0, 200, 0, 42)
  29. TextBox.Font = Enum.Font.SourceSans
  30. TextBox.PlaceholderText = "Jump CoolDown here"
  31. TextBox.Text = "1"
  32. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. TextBox.TextSize = 14.000
  34.  
  35. UICorner.CornerRadius = UDim.new(0, 5)
  36. UICorner.Parent = TextBox
  37.  
  38. UICorner_2.CornerRadius = UDim.new(0.0599999987, 0)
  39. UICorner_2.Parent = Frame
  40.  
  41. onoff.Name = "on/off"
  42. onoff.Parent = Frame
  43. onoff.BackgroundColor3 = Color3.fromRGB(102, 102, 102)
  44. onoff.Position = UDim2.new(0.324786335, 0, 0.393939376, 0)
  45. onoff.Size = UDim2.new(0, 82, 0, 35)
  46. onoff.Font = Enum.Font.SourceSansItalic
  47. onoff.Text = "Start"
  48. onoff.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. onoff.TextScaled = true
  50. onoff.TextSize = 14.000
  51. onoff.TextWrapped = true
  52.  
  53. UICorner_3.CornerRadius = UDim.new(0, 6)
  54. UICorner_3.Parent = onoff
  55.  
  56. -- Scripts:
  57.  
  58. local function XOIMW_fake_script() -- TextBox.LocalScript
  59. local script = Instance.new('LocalScript', TextBox)
  60.  
  61. if script.Parent.Text == "0" then
  62. game.Players.LocalPlayer:Kick("dont set it to 0, it breaks your game.")
  63. end
  64. end
  65. coroutine.wrap(XOIMW_fake_script)()
  66. local function ISEVDFK_fake_script() -- onoff.LocalScript
  67. local script = Instance.new('LocalScript', onoff)
  68.  
  69. script.Parent.MouseButton1Click:Connect(function()
  70. repeat
  71. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  72. wait(script.Parent.Parent.TextBox.Text)
  73. until
  74. game.Players.LocalPlayer.Character.Humanoid.Health == -10
  75.  
  76. end)
  77. end
  78. coroutine.wrap(ISEVDFK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement