Facebook
From Joseph , 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 141
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local Frame = Instance.new("Frame")
  5. local INFJUMP = Instance.new("TextButton")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. main.Name = "main"
  13. main.Parent = ScreenGui
  14. main.Active = true
  15. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  16. main.BorderSizePixel = 0
  17. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  18. main.Size = UDim2.new(0, 146, 0, 28)
  19. main.Active = true
  20. main.Draggable = false
  21.  
  22. TextLabel.Parent = main
  23. TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  24. TextLabel.BorderSizePixel = 0
  25. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  26. TextLabel.Font = Enum.Font.SciFi
  27. TextLabel.Text = "Misc"
  28. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  29. TextLabel.TextSize = 17.000
  30. TextLabel.TextWrapped = true
  31.  
  32. Frame.Parent = main
  33. Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  34. Frame.BorderSizePixel = 0
  35. Frame.Position = UDim2.new(0, 0, 1, 0)
  36. Frame.Size = UDim2.new(0, 146, 0, 61)
  37.  
  38. INFJUMP.Name = "INFJUMP"
  39. INFJUMP.Parent = main
  40. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. INFJUMP.BorderSizePixel = 0
  42. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  43. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  44. INFJUMP.Font = Enum.Font.SourceSans
  45. INFJUMP.Text = ""
  46. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. INFJUMP.TextSize = 14.000
  48. INFJUMP.MouseButton1Down:connect(function()
  49. local Player = game:GetService'Players'.LocalPlayer;
  50. local UIS = game:GetService'UserInputService';
  51.  
  52. _G.JumpHeight = 50;
  53.  
  54. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  55.  
  56. UIS.InputBegan:connect(function(UserInput)
  57.     if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  58.         Action(Player.Character.Humanoid, function(self)
  59.             if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  60.                 Action(self.Parent.HumanoidRootPart, function(self)
  61.                     self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  62.                 end)
  63.             end
  64.         end)
  65.     end
  66. end)
  67. end)
  68.  
  69. TextLabel_2.Parent = main
  70. TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  71. TextLabel_2.BorderSizePixel = 0
  72. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  73. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  74. TextLabel_2.Font = Enum.Font.SciFi
  75. TextLabel_2.Text = "Inf jump"
  76. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  77. TextLabel_2.TextSize = 17.000
  78. TextLabel_2.TextWrapped = true
  79.  
  80. -- Scripts:
  81.  
  82. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  83. local script = Instance.new('LocalScript', INFJUMP)
  84.  
  85. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  86.  
  87. counter = 0
  88.  
  89. while wait(0.1)do
  90. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  91.  
  92. counter = counter + 0.01
  93. end
  94. end
  95. coroutine.wrap(TKDWQ_fake_script)()

Replies to Infinite jump hack for tower of hell roblox rss

Title Name Language When
Re: Infinite jump hack for tower of hell roblox Joseph text 3 Years ago.