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

Replies to Untitled rss

Title Name Language When
INF JUMP IN TOH Gravyfed342 xml 2 Years ago.