proHDscirpts

Untitled

May 25th, 2022
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local label = Instance.new("TextLabel")
  6. local infjump = Instance.new("TextButton")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. main.Name = "main"
  13. main.Parent = ScreenGui
  14. main.BackgroundColor3 = Color3.fromRGB(107, 107, 107)
  15. main.Position = UDim2.new(0.638124287, 0, 0.447319776, 0)
  16. main.Size = UDim2.new(0, 270, 0, 221)
  17. main.Active = true
  18. main.Draggable = true
  19.  
  20. label.Name = "label"
  21. label.Parent = main
  22. label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. label.Size = UDim2.new(0, 270, 0, 50)
  24. label.Font = Enum.Font.SourceSans
  25. label.Text = "testing to convert into loadstring"
  26. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  27. label.TextSize = 14.000
  28.  
  29. infjump.Name = "inf jump"
  30. infjump.Parent = main
  31. infjump.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. infjump.Position = UDim2.new(0, 0, 0.226244345, 0)
  33. infjump.Size = UDim2.new(0, 270, 0, 171)
  34. infjump.Font = Enum.Font.SourceSans
  35. infjump.Text = "basic infitie jump "
  36. infjump.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. infjump.TextSize = 14.000
  38. infjump.MouseButton1Down:connect(function()
  39. -- Make sure to copy aLL of this!
  40.  
  41. -- Gui to Lua
  42. -- Version: 3.2
  43.  
  44. -- Instances:
  45.  
  46. local ScreenGui = Instance.new("ScreenGui")
  47. local main = Instance.new("Frame")
  48. local TextLabel = Instance.new("TextLabel")
  49. local Frame = Instance.new("Frame")
  50. local INFJUMP = Instance.new("TextButton")
  51. local TextLabel_2 = Instance.new("TextLabel")
  52.  
  53. --Properties:
  54.  
  55. ScreenGui.Parent = game.CoreGui
  56.  
  57. main.Name = "main"
  58. main.Parent = ScreenGui
  59. main.Active = true
  60. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. main.BorderSizePixel = 0
  62. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  63. main.Size = UDim2.new(0, 146, 0, 28)
  64. main.Active = true
  65. main.Draggable = false
  66.  
  67. TextLabel.Parent = main
  68. TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  69. TextLabel.BorderSizePixel = 0
  70. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  71. TextLabel.Font = Enum.Font.SciFi
  72. TextLabel.Text = "Misc"
  73. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. TextLabel.TextSize = 17.000
  75. TextLabel.TextWrapped = true
  76.  
  77. Frame.Parent = main
  78. Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  79. Frame.BorderSizePixel = 0
  80. Frame.Position = UDim2.new(0, 0, 1, 0)
  81. Frame.Size = UDim2.new(0, 146, 0, 61)
  82.  
  83. INFJUMP.Name = "INFJUMP"
  84. INFJUMP.Parent = main
  85. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  86. INFJUMP.BorderSizePixel = 0
  87. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  88. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  89. INFJUMP.Font = Enum.Font.SourceSans
  90. INFJUMP.Text = ""
  91. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  92. INFJUMP.TextSize = 14.000
  93. INFJUMP.MouseButton1Down:connect(function()
  94. local Player = game:GetService'Players'.LocalPlayer;
  95. local UIS = game:GetService'UserInputService';
  96.  
  97. _G.JumpHeight = 50;
  98.  
  99. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  100.  
  101. UIS.InputBegan:connect(function(UserInput)
  102. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  103. Action(Player.Character.Humanoid, function(self)
  104. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  105. Action(self.Parent.HumanoidRootPart, function(self)
  106. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  107. end)
  108. end
  109. end)
  110. end
  111. end)
  112. end)
  113.  
  114. TextLabel_2.Parent = main
  115. TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  116. TextLabel_2.BorderSizePixel = 0
  117. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  118. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  119. TextLabel_2.Font = Enum.Font.SciFi
  120. TextLabel_2.Text = "Inf jump"
  121. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  122. TextLabel_2.TextSize = 17.000
  123. TextLabel_2.TextWrapped = true
  124.  
  125. -- Scripts:
  126.  
  127. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  128. local script = Instance.new('LocalScript', INFJUMP)
  129.  
  130. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  131.  
  132. counter = 0
  133.  
  134. while wait(0.1)do
  135. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  136.  
  137. counter = counter + 0.01
  138. end
  139. end
  140. coroutine.wrap(TKDWQ_fake_script)()
  141. end)
Add Comment
Please, Sign In to add comment