Advertisement
RhatariTheGamer

Untitled

Oct 16th, 2021 (edited)
1,265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.10 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local DevsRecreate = Instance.new("ScreenGui")
  7. local SpeedGravityJumppower = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local UIGradient = Instance.new("UIGradient")
  10. local speed = Instance.new("TextLabel")
  11. local walkspeedAPPLY = Instance.new("TextButton")
  12. local UICorner_2 = Instance.new("UICorner")
  13. local walkspeed = Instance.new("TextBox")
  14. local UICorner_3 = Instance.new("UICorner")
  15. local TitleMain = Instance.new("TextLabel")
  16. local Frame = Instance.new("Frame")
  17. local Frame_2 = Instance.new("Frame")
  18. local JumpPower = Instance.new("TextLabel")
  19. local jumppowerAPPLY = Instance.new("TextButton")
  20. local UICorner_4 = Instance.new("UICorner")
  21. local jumppower = Instance.new("TextBox")
  22. local UICorner_5 = Instance.new("UICorner")
  23. local Frame_3 = Instance.new("Frame")
  24. local Gravity = Instance.new("TextLabel")
  25. local gravityAPPLY = Instance.new("TextButton")
  26. local UICorner_6 = Instance.new("UICorner")
  27. local gravity = Instance.new("TextBox")
  28. local UICorner_7 = Instance.new("UICorner")
  29. local Destroyparent = Instance.new("TextButton")
  30. local UICorner_8 = Instance.new("UICorner")
  31.  
  32. --Properties:
  33.  
  34. DevsRecreate.Name = "DevsRecreate"
  35. DevsRecreate.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  36. DevsRecreate.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  37.  
  38. SpeedGravityJumppower.Name = "Speed/Gravity/Jumppower"
  39. SpeedGravityJumppower.Parent = DevsRecreate
  40. SpeedGravityJumppower.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. SpeedGravityJumppower.Position = UDim2.new(0.409895837, 0, 0.276851833, 0)
  42. SpeedGravityJumppower.Size = UDim2.new(0, 346, 0, 481)
  43.  
  44. UICorner.CornerRadius = UDim.new(0, 13)
  45. UICorner.Parent = SpeedGravityJumppower
  46.  
  47. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(47, 47, 47)), ColorSequenceKeypoint.new(0.99, Color3.fromRGB(17, 17, 17)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(0, 166, 255))}
  48. UIGradient.Rotation = -45
  49. UIGradient.Parent = SpeedGravityJumppower
  50.  
  51. speed.Name = "speed-"
  52. speed.Parent = SpeedGravityJumppower
  53. speed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  54. speed.BackgroundTransparency = 1.000
  55. speed.Position = UDim2.new(0.0375722535, 0, 0.158849642, 0)
  56. speed.Size = UDim2.new(0, 127, 0, 61)
  57. speed.Font = Enum.Font.Cartoon
  58. speed.Text = "Speed/Destroy"
  59. speed.TextColor3 = Color3.fromRGB(255, 255, 255)
  60. speed.TextScaled = true
  61. speed.TextSize = 14.000
  62. speed.TextWrapped = true
  63.  
  64. walkspeedAPPLY.Name = "walkspeedAPPLY"
  65. walkspeedAPPLY.Parent = SpeedGravityJumppower
  66. walkspeedAPPLY.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  67. walkspeedAPPLY.Position = UDim2.new(0.0432637632, 0, 0.302816868, 0)
  68. walkspeedAPPLY.Size = UDim2.new(0, 100, 0, 50)
  69. walkspeedAPPLY.Font = Enum.Font.Cartoon
  70. walkspeedAPPLY.Text = "Apply"
  71. walkspeedAPPLY.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. walkspeedAPPLY.TextScaled = true
  73. walkspeedAPPLY.TextSize = 14.000
  74. walkspeedAPPLY.TextWrapped = true
  75.  
  76. UICorner_2.Parent = walkspeedAPPLY
  77.  
  78. walkspeed.Name = "walkspeed"
  79. walkspeed.Parent = SpeedGravityJumppower
  80. walkspeed.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  81. walkspeed.Position = UDim2.new(0.404624254, 0, 0.300737917, 0)
  82. walkspeed.Size = UDim2.new(0, 200, 0, 50)
  83. walkspeed.Font = Enum.Font.SourceSans
  84. walkspeed.PlaceholderText = "Walkspeed"
  85. walkspeed.Text = ""
  86. walkspeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  87. walkspeed.TextScaled = true
  88. walkspeed.TextSize = 14.000
  89. walkspeed.TextWrapped = true
  90.  
  91. UICorner_3.Parent = walkspeed
  92.  
  93. TitleMain.Name = "TitleMain-"
  94. TitleMain.Parent = SpeedGravityJumppower
  95. TitleMain.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  96. TitleMain.BackgroundTransparency = 1.000
  97. TitleMain.Position = UDim2.new(-0.00246868283, 0, 0.0154668763, 0)
  98. TitleMain.Size = UDim2.new(0, 311, 0, 56)
  99. TitleMain.Font = Enum.Font.Cartoon
  100. TitleMain.Text = "DevsRecreate"
  101. TitleMain.TextColor3 = Color3.fromRGB(255, 255, 255)
  102. TitleMain.TextScaled = true
  103. TitleMain.TextSize = 14.000
  104. TitleMain.TextWrapped = true
  105.  
  106. Frame.Parent = SpeedGravityJumppower
  107. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  108. Frame.BorderSizePixel = 0
  109. Frame.Position = UDim2.new(0, 0, 0.146736428, 0)
  110. Frame.Size = UDim2.new(0, 345, 0, 3)
  111.  
  112. Frame_2.Parent = SpeedGravityJumppower
  113. Frame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  114. Frame_2.BorderSizePixel = 0
  115. Frame_2.Position = UDim2.new(0.00289017335, 0, 0.449553311, 0)
  116. Frame_2.Size = UDim2.new(0, 345, 0, 3)
  117.  
  118. JumpPower.Name = "JumpPower-"
  119. JumpPower.Parent = SpeedGravityJumppower
  120. JumpPower.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  121. JumpPower.BackgroundTransparency = 1.000
  122. JumpPower.Position = UDim2.new(0.0404624268, 0, 0.49765259, 0)
  123. JumpPower.Size = UDim2.new(0, 162, 0, 36)
  124. JumpPower.Font = Enum.Font.Cartoon
  125. JumpPower.Text = "Jumppower"
  126. JumpPower.TextColor3 = Color3.fromRGB(255, 255, 255)
  127. JumpPower.TextScaled = true
  128. JumpPower.TextSize = 14.000
  129. JumpPower.TextWrapped = true
  130.  
  131. jumppowerAPPLY.Name = "jumppowerAPPLY"
  132. jumppowerAPPLY.Parent = SpeedGravityJumppower
  133. jumppowerAPPLY.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  134. jumppowerAPPLY.Position = UDim2.new(0.0490441099, 0, 0.600938916, 0)
  135. jumppowerAPPLY.Size = UDim2.new(0, 100, 0, 50)
  136. jumppowerAPPLY.Font = Enum.Font.Cartoon
  137. jumppowerAPPLY.Text = "Apply"
  138. jumppowerAPPLY.TextColor3 = Color3.fromRGB(255, 255, 255)
  139. jumppowerAPPLY.TextScaled = true
  140. jumppowerAPPLY.TextSize = 14.000
  141. jumppowerAPPLY.TextWrapped = true
  142.  
  143. UICorner_4.Parent = jumppowerAPPLY
  144.  
  145. jumppower.Name = "jumppower"
  146. jumppower.Parent = SpeedGravityJumppower
  147. jumppower.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  148. jumppower.Position = UDim2.new(0.404624254, 0, 0.600939035, 0)
  149. jumppower.Size = UDim2.new(0, 200, 0, 50)
  150. jumppower.Font = Enum.Font.SourceSans
  151. jumppower.PlaceholderText = "Jumppower"
  152. jumppower.Text = ""
  153. jumppower.TextColor3 = Color3.fromRGB(255, 255, 255)
  154. jumppower.TextScaled = true
  155. jumppower.TextSize = 14.000
  156. jumppower.TextWrapped = true
  157.  
  158. UICorner_5.Parent = jumppower
  159.  
  160. Frame_3.Parent = SpeedGravityJumppower
  161. Frame_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  162. Frame_3.BorderSizePixel = 0
  163. Frame_3.Position = UDim2.new(0, 0, 0.741331041, 0)
  164. Frame_3.Size = UDim2.new(0, 345, 0, 3)
  165.  
  166. Gravity.Name = "Gravity-"
  167. Gravity.Parent = SpeedGravityJumppower
  168. Gravity.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  169. Gravity.BackgroundTransparency = 1.000
  170. Gravity.Position = UDim2.new(0.0462427735, 0, 0.776238918, 0)
  171. Gravity.Size = UDim2.new(0, 104, 0, 36)
  172. Gravity.Font = Enum.Font.Cartoon
  173. Gravity.Text = "Gravity"
  174. Gravity.TextColor3 = Color3.fromRGB(255, 255, 255)
  175. Gravity.TextScaled = true
  176. Gravity.TextSize = 14.000
  177. Gravity.TextWrapped = true
  178.  
  179. gravityAPPLY.Name = "gravityAPPLY"
  180. gravityAPPLY.Parent = SpeedGravityJumppower
  181. gravityAPPLY.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  182. gravityAPPLY.Position = UDim2.new(0.0432637632, 0, 0.873288155, 0)
  183. gravityAPPLY.Size = UDim2.new(0, 100, 0, 50)
  184. gravityAPPLY.Font = Enum.Font.Cartoon
  185. gravityAPPLY.Text = "Apply"
  186. gravityAPPLY.TextColor3 = Color3.fromRGB(255, 255, 255)
  187. gravityAPPLY.TextScaled = true
  188. gravityAPPLY.TextSize = 14.000
  189. gravityAPPLY.TextWrapped = true
  190.  
  191. UICorner_6.Parent = gravityAPPLY
  192.  
  193. gravity.Name = "gravity"
  194. gravity.Parent = SpeedGravityJumppower
  195. gravity.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  196. gravity.Position = UDim2.new(0.398843914, 0, 0.873288274, 0)
  197. gravity.Size = UDim2.new(0, 200, 0, 50)
  198. gravity.Font = Enum.Font.SourceSans
  199. gravity.PlaceholderText = "Gravity"
  200. gravity.Text = ""
  201. gravity.TextColor3 = Color3.fromRGB(255, 255, 255)
  202. gravity.TextScaled = true
  203. gravity.TextSize = 14.000
  204. gravity.TextWrapped = true
  205.  
  206. UICorner_7.Parent = gravity
  207.  
  208. Destroyparent.Name = "Destroy.parent"
  209. Destroyparent.Parent = SpeedGravityJumppower
  210. Destroyparent.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  211. Destroyparent.Position = UDim2.new(0.407514453, 0, 0.173402652, 0)
  212. Destroyparent.Size = UDim2.new(0, 197, 0, 48)
  213. Destroyparent.Font = Enum.Font.Cartoon
  214. Destroyparent.Text = "Destroy Gui"
  215. Destroyparent.TextColor3 = Color3.fromRGB(255, 255, 255)
  216. Destroyparent.TextScaled = true
  217. Destroyparent.TextSize = 14.000
  218. Destroyparent.TextWrapped = true
  219.  
  220. UICorner_8.Parent = Destroyparent
  221.  
  222. -- Scripts:
  223.  
  224. local function MVKRKFK_fake_script() -- SpeedGravityJumppower.Drag-
  225.     local script = Instance.new('LocalScript', SpeedGravityJumppower)
  226.  
  227.     local par = script.Parent
  228.     par.Active = true
  229.     par.Draggable = true
  230. end
  231. coroutine.wrap(MVKRKFK_fake_script)()
  232. local function JPCTZB_fake_script() -- walkspeedAPPLY.Nul-
  233.     local script = Instance.new('LocalScript', walkspeedAPPLY)
  234.  
  235.     local apply = script.Parent
  236.     local walkspeed = script.Parent.Parent.walkspeed
  237.     local hum = game.Players.LocalPlayer.Character
  238.    
  239.     apply.MouseButton1Click:Connect(function()
  240.         hum:WaitForChild("Humanoid").WalkSpeed = walkspeed.Text
  241.     end)
  242. end
  243. coroutine.wrap(JPCTZB_fake_script)()
  244. local function AYNHOZG_fake_script() -- jumppowerAPPLY.Nul-
  245.     local script = Instance.new('LocalScript', jumppowerAPPLY)
  246.  
  247.     local apply = script.Parent
  248.     local jumppower = script.Parent.Parent.jumppower
  249.     local hum = game.Players.LocalPlayer.Character
  250.    
  251.     apply.MouseButton1Click:Connect(function()
  252.         hum:WaitForChild("Humanoid").JumpPower = jumppower.Text
  253.     end)
  254. end
  255. coroutine.wrap(AYNHOZG_fake_script)()
  256. local function PBHOPU_fake_script() -- gravityAPPLY.Nul-
  257.     local script = Instance.new('LocalScript', gravityAPPLY)
  258.  
  259.     local apply = script.Parent
  260.     local gravity = script.Parent.Parent.gravity
  261.    
  262.     apply.MouseButton1Click:Connect(function()
  263.         workspace.Gravity = gravity.Text
  264.     end)
  265. end
  266. coroutine.wrap(PBHOPU_fake_script)()
  267. local function FLOUEKP_fake_script() -- Destroyparent.LocalScript
  268.     local script = Instance.new('LocalScript', Destroyparent)
  269.  
  270.     local par = script.Parent
  271.     par.MouseButton1Click:Connect(function()
  272.         par.Parent.Parent:Destroy()
  273.     end)
  274. end
  275. coroutine.wrap(FLOUEKP_fake_script)()
  276. local function NTMBQB_fake_script() -- DevsRecreate.CloseOpen-
  277.     local script = Instance.new('LocalScript', DevsRecreate)
  278.  
  279.     local UIS = game:GetService("UserInputService")
  280.    
  281.     UIS.InputBegan:Connect(function(input)
  282.         if input.KeyCode == Enum.KeyCode.RightShift then
  283.             script.Parent.Enabled = not script.Parent.Enabled
  284.         end
  285.     end)
  286. end
  287. coroutine.wrap(NTMBQB_fake_script)()
  288.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement