Advertisement
AchilleTheScRiPters

ROBLOX GUI 100% WORKING!

Dec 19th, 2022
630
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.34 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local MAIN = Instance.new("ScreenGui")
  7. local main = Instance.new("TextLabel")
  8. local UICorner = Instance.new("UICorner")
  9. local credits = Instance.new("TextLabel")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local X = Instance.new("TextButton")
  12. local UICorner_3 = Instance.new("UICorner")
  13. local ScrollingFrame = Instance.new("ScrollingFrame")
  14. local JumpBoostOn = Instance.new("TextButton")
  15. local UICorner_4 = Instance.new("UICorner")
  16. local JumpBoostOff = Instance.new("TextButton")
  17. local UICorner_5 = Instance.new("UICorner")
  18. local SpeedBoostOn = Instance.new("TextButton")
  19. local UICorner_6 = Instance.new("UICorner")
  20. local SpeedBoostOff = Instance.new("TextButton")
  21. local UICorner_7 = Instance.new("UICorner")
  22. local NoClipOn = Instance.new("TextButton")
  23. local UICorner_8 = Instance.new("UICorner")
  24. local NoClipOff = Instance.new("TextButton")
  25. local UICorner_9 = Instance.new("UICorner")
  26. local TextButton = Instance.new("TextButton")
  27. local UICorner_10 = Instance.new("UICorner")
  28.  
  29. --Properties:
  30.  
  31. MAIN.Name = "MAIN"
  32. MAIN.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  33. MAIN.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  34.  
  35. main.Name = "main"
  36. main.Parent = MAIN
  37. main.BackgroundColor3 = Color3.fromRGB(62, 62, 62)
  38. main.Position = UDim2.new(0.285008222, 0, 0.167901233, 0)
  39. main.Size = UDim2.new(0, 450, 0, 500)
  40. main.Font = Enum.Font.SourceSans
  41. main.Text = ""
  42. main.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. main.TextSize = 14.000
  44.  
  45. UICorner.CornerRadius = UDim.new(0, 7)
  46. UICorner.Parent = main
  47.  
  48. credits.Name = "credits"
  49. credits.Parent = main
  50. credits.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  51. credits.Size = UDim2.new(0, 450, 0, 50)
  52. credits.Font = Enum.Font.SourceSans
  53. credits.Text = "MADE BY | @a73x22h70832d"
  54. credits.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. credits.TextSize = 14.000
  56.  
  57. UICorner_2.CornerRadius = UDim.new(0, 7)
  58. UICorner_2.Parent = credits
  59.  
  60. X.Name = "X"
  61. X.Parent = main
  62. X.BackgroundColor3 = Color3.fromRGB(235, 3, 72)
  63. X.Position = UDim2.new(1.86264515e-09, 0, 0, 0)
  64. X.Size = UDim2.new(0, 20, 0, 20)
  65. X.Font = Enum.Font.SourceSans
  66. X.Text = "X"
  67. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. X.TextSize = 14.000
  69.  
  70. UICorner_3.Parent = X
  71.  
  72. ScrollingFrame.Parent = main
  73. ScrollingFrame.Active = true
  74. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(62, 62, 62)
  75. ScrollingFrame.BorderSizePixel = 0
  76. ScrollingFrame.Position = UDim2.new(0.0133333337, 0, 0.120000005, 0)
  77. ScrollingFrame.Size = UDim2.new(0, 437, 0, 434)
  78.  
  79. JumpBoostOn.Name = "Jump BoostOn"
  80. JumpBoostOn.Parent = ScrollingFrame
  81. JumpBoostOn.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  82. JumpBoostOn.Size = UDim2.new(0, 225, 0, 50)
  83. JumpBoostOn.Font = Enum.Font.SourceSans
  84. JumpBoostOn.Text = "Jump Boost On"
  85. JumpBoostOn.TextColor3 = Color3.fromRGB(0, 0, 0)
  86. JumpBoostOn.TextSize = 14.000
  87.  
  88. UICorner_4.Parent = JumpBoostOn
  89.  
  90. JumpBoostOff.Name = "Jump BoostOff"
  91. JumpBoostOff.Parent = ScrollingFrame
  92. JumpBoostOff.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  93. JumpBoostOff.Position = UDim2.new(0, 0, 0.0590000004, 0)
  94. JumpBoostOff.Size = UDim2.new(0, 225, 0, 50)
  95. JumpBoostOff.Font = Enum.Font.SourceSans
  96. JumpBoostOff.Text = "Jump Boost Off"
  97. JumpBoostOff.TextColor3 = Color3.fromRGB(0, 0, 0)
  98. JumpBoostOff.TextSize = 14.000
  99.  
  100. UICorner_5.Parent = JumpBoostOff
  101.  
  102. SpeedBoostOn.Name = "SpeedBoostOn"
  103. SpeedBoostOn.Parent = ScrollingFrame
  104. SpeedBoostOn.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  105. SpeedBoostOn.Position = UDim2.new(0, 0, 0.116999999, 0)
  106. SpeedBoostOn.Size = UDim2.new(0, 225, 0, 50)
  107. SpeedBoostOn.Font = Enum.Font.SourceSans
  108. SpeedBoostOn.Text = "Speed Boost On"
  109. SpeedBoostOn.TextColor3 = Color3.fromRGB(0, 0, 0)
  110. SpeedBoostOn.TextSize = 14.000
  111.  
  112. UICorner_6.Parent = SpeedBoostOn
  113.  
  114. SpeedBoostOff.Name = "Speed BoostOff"
  115. SpeedBoostOff.Parent = ScrollingFrame
  116. SpeedBoostOff.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  117. SpeedBoostOff.Position = UDim2.new(0, 0, 0.175999999, 0)
  118. SpeedBoostOff.Size = UDim2.new(0, 225, 0, 50)
  119. SpeedBoostOff.Font = Enum.Font.SourceSans
  120. SpeedBoostOff.Text = "Speed Boost Off"
  121. SpeedBoostOff.TextColor3 = Color3.fromRGB(0, 0, 0)
  122. SpeedBoostOff.TextSize = 14.000
  123.  
  124. UICorner_7.Parent = SpeedBoostOff
  125.  
  126. NoClipOn.Name = "No Clip On"
  127. NoClipOn.Parent = ScrollingFrame
  128. NoClipOn.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  129. NoClipOn.Position = UDim2.new(0, 0, 0.233999997, 0)
  130. NoClipOn.Size = UDim2.new(0, 225, 0, 50)
  131. NoClipOn.Font = Enum.Font.SourceSans
  132. NoClipOn.Text = "No Clip On"
  133. NoClipOn.TextColor3 = Color3.fromRGB(0, 0, 0)
  134. NoClipOn.TextSize = 14.000
  135.  
  136. UICorner_8.Parent = NoClipOn
  137.  
  138. NoClipOff.Name = "No Clip Off"
  139. NoClipOff.Parent = ScrollingFrame
  140. NoClipOff.BackgroundColor3 = Color3.fromRGB(225, 193, 10)
  141. NoClipOff.Position = UDim2.new(0, 0, 0.292999983, 0)
  142. NoClipOff.Size = UDim2.new(0, 225, 0, 50)
  143. NoClipOff.Font = Enum.Font.SourceSans
  144. NoClipOff.Text = "No Clip Off"
  145. NoClipOff.TextColor3 = Color3.fromRGB(0, 0, 0)
  146. NoClipOff.TextSize = 14.000
  147.  
  148. UICorner_9.Parent = NoClipOff
  149.  
  150. TextButton.Name = "-"
  151. TextButton.Parent = MAIN
  152. TextButton.BackgroundColor3 = Color3.fromRGB(40, 222, 12)
  153. TextButton.Position = UDim2.new(0.00576606253, 0, 0.965432107, 0)
  154. TextButton.Size = UDim2.new(0, 20, 0, 20)
  155. TextButton.Font = Enum.Font.SourceSans
  156. TextButton.Text = "-"
  157. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  158. TextButton.TextSize = 14.000
  159.  
  160. UICorner_10.Parent = TextButton
  161.  
  162. -- Scripts:
  163.  
  164. local function YEFQ_fake_script() -- X.Script
  165.     local script = Instance.new('Script', X)
  166.  
  167.     script.Parent.MouseButton1Click:Connect(function()
  168.         local MAIN = script.Parent.Parent.Parent
  169.         local main = script.Parent.Parent
  170.         local X = script.Parent
  171.         local scroll = main.ScrollingFrame
  172.         --script:
  173.         main.Active = false
  174.         main.Visible = false
  175.     end)
  176.    
  177. end
  178. coroutine.wrap(YEFQ_fake_script)()
  179. local function POCDTU_fake_script() -- JumpBoostOn.Script
  180.     local script = Instance.new('Script', JumpBoostOn)
  181.  
  182.     script.Parent.MouseButton1Click:Connect(function()
  183.         local prl = game.Workspace.a73x22h70832d
  184.         prl.Humanoid.UseJumpPower = true
  185.         prl.Humanoid.JumpPower = 100
  186.     end)
  187. end
  188. coroutine.wrap(POCDTU_fake_script)()
  189. local function ZRJGYF_fake_script() -- JumpBoostOff.Script
  190.     local script = Instance.new('Script', JumpBoostOff)
  191.  
  192.     script.Parent.MouseButton1Click:Connect(function()
  193.         local prl = game.Workspace.a73x22h70832d
  194.         prl.Humanoid.UseJumpPower = true
  195.         prl.Humanoid.JumpPower = 50
  196.     end)
  197. end
  198. coroutine.wrap(ZRJGYF_fake_script)()
  199. local function KGSE_fake_script() -- SpeedBoostOn.Script
  200.     local script = Instance.new('Script', SpeedBoostOn)
  201.  
  202.     script.Parent.MouseButton1Click:Connect(function()
  203.         local prl = game.Workspace.a73x22h70832d
  204.         prl.Humanoid.WalkSpeed = 100
  205.     end)
  206. end
  207. coroutine.wrap(KGSE_fake_script)()
  208. local function YDATGUI_fake_script() -- SpeedBoostOff.Script
  209.     local script = Instance.new('Script', SpeedBoostOff)
  210.  
  211.     script.Parent.MouseButton1Click:Connect(function()
  212.         local prl = game.Workspace.a73x22h70832d
  213.         prl.Humanoid.WalkSpeed = 16
  214.     end)
  215. end
  216. coroutine.wrap(YDATGUI_fake_script)()
  217. local function LNXQOWC_fake_script() -- NoClipOn.Script
  218.     local script = Instance.new('Script', NoClipOn)
  219.  
  220.     script.Parent.MouseButton1Click:Connect(function()
  221.         --warning
  222.         for i=1,5,1 do
  223.             print("do not jump with noclip")
  224.         end
  225.        
  226.         --action
  227.        
  228.         local touchpart = game.Workspace.a73x22h70832d.HumanoidRootPart
  229.        
  230.         touchpart.Touched:Connect(function(hit)
  231.             local PartName = hit.Name
  232.             if hit.Name == "Baseplate" then
  233.                
  234.             else
  235.                 hit.CanCollide = false
  236.                 wait(2)
  237.                 hit.CanCollide = true
  238.             end
  239.             --bug
  240.            
  241.             if  script.Enabled == false then
  242.                 hit.CanCollide = true
  243.             end
  244.    
  245.         end)
  246.        
  247.     end)
  248. end
  249. coroutine.wrap(LNXQOWC_fake_script)()
  250. local function ZHYR_fake_script() -- NoClipOff.Script
  251.     local script = Instance.new('Script', NoClipOff)
  252.  
  253.     script.Parent.MouseButton1Click:Connect(function()
  254.         script.Parent.Parent["No Clip On"].Script.Enabled = false
  255.         wait(1)
  256.         script.Parent.Parent["No Clip On"].Script.Enabled = true
  257.     end)
  258. end
  259. coroutine.wrap(ZHYR_fake_script)()
  260. local function VAIXP_fake_script() -- TextButton.Script
  261.     local script = Instance.new('Script', TextButton)
  262.  
  263.     script.Parent.MouseButton1Click:Connect(function()
  264.         local MAIN = script.Parent.Parent
  265.         local main = script.Parent.Parent.main
  266.         local X = main.X
  267.         local scroll = main.ScrollingFrame
  268.         --script:
  269.         main.Active = true
  270.         main.Visible = true
  271.     end)
  272. end
  273. coroutine.wrap(VAIXP_fake_script)()
  274.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement