Xen_YT

OP ROBLOX ADOPT ME GUI

May 12th, 2020
817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.55 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local ImageButton = Instance.new("ImageButton")
  9. local speed = Instance.new("TextButton")
  10. local fly = Instance.new("TextButton")
  11. local gravity = Instance.new("TextButton")
  12. local graphics = Instance.new("TextButton")
  13. local fps = Instance.new("TextButton")
  14. local rejoin = Instance.new("TextButton")
  15. local autofarm = Instance.new("TextButton")
  16. local chatspam = Instance.new("TextButton")
  17. local creds = Instance.new("TextButton")
  18. local close = Instance.new("TextButton")
  19. local open = Instance.new("TextButton")
  20.  
  21. --Properties:
  22.  
  23. ScreenGui.Parent = game.CoreGui
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. Frame.Parent = ScreenGui
  27. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. Frame.BackgroundTransparency = 1.000
  29. Frame.Position = UDim2.new(0.496432245, 0, 0.423831075, 0)
  30. Frame.Size = UDim2.new(0, 100, 0, 100)
  31.  
  32. ImageButton.Parent = Frame
  33. ImageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. ImageButton.BackgroundTransparency = 1.000
  35. ImageButton.Position = UDim2.new(3.22000003, 0, 0.849999905, 0)
  36. ImageButton.Size = UDim2.new(0, 225, 0, 283)
  37. ImageButton.Visible = false
  38. ImageButton.Image = "http://www.roblox.com/asset/?id=4972098793"
  39. ImageButton.Draggable = true
  40.  
  41. speed.Name = "speed"
  42. speed.Parent = ImageButton
  43. speed.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  44. speed.BackgroundTransparency = 0.500
  45. speed.Position = UDim2.new(0.124444455, 0, 0.501766801, 0)
  46. speed.Size = UDim2.new(0, 66, 0, 20)
  47. speed.Font = Enum.Font.GothamBlack
  48. speed.Text = "SPEED[X]"
  49. speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  50. speed.TextSize = 14.000
  51. speed.MouseButton1Down:connect(function()
  52. local walkspeedplayer = game:GetService("Players").LocalPlayer
  53. local walkspeedmouse = walkspeedplayer:GetMouse()
  54.  
  55. local walkspeedenabled = false
  56.  
  57. function x_walkspeed(key)
  58. if (key == "x") then
  59. if walkspeedenabled == false then
  60. _G.WS = 200;
  61. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  62. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  63. Humanoid.WalkSpeed = _G.WS;
  64. end)
  65. Humanoid.WalkSpeed = _G.WS;
  66.  
  67. walkspeedenabled = true
  68. elseif walkspeedenabled == true then
  69. _G.WS = 20;
  70. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  71. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  72. Humanoid.WalkSpeed = _G.WS;
  73. end)
  74. Humanoid.WalkSpeed = _G.WS;
  75.  
  76. walkspeedenabled = false
  77. end
  78. end
  79. end
  80.  
  81. walkspeedmouse.KeyDown:connect(x_walkspeed)
  82.  
  83. end)
  84.  
  85.  
  86. fly.Name = "fly"
  87. fly.Parent = ImageButton
  88. fly.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  89. fly.BackgroundTransparency = 0.500
  90. fly.Position = UDim2.new(0.599999964, 0, 0.501766801, 0)
  91. fly.Size = UDim2.new(0, 66, 0, 20)
  92. fly.Font = Enum.Font.GothamBlack
  93. fly.Text = "FLY[Q]"
  94. fly.TextColor3 = Color3.fromRGB(0, 0, 0)
  95. fly.TextSize = 14.000
  96. fly.MouseButton1Down:connect(function()
  97. local Enabled = false
  98. local Camera = game.Workspace.CurrentCamera
  99. local Player = game:GetService("Players").LocalPlayer
  100. local Input = game:GetService("UserInputService")
  101. local Forward = false
  102. local Back = false
  103. local Left = false
  104. local Right = false
  105. local Up = false
  106. local Down = false
  107.  
  108. local function SetPlayer()
  109. for i,v in pairs(Player.Character:GetChildren()) do
  110. pcall(function()
  111. v.Anchored = not v.Anchored
  112. end)
  113. end
  114. end
  115.  
  116. Input.InputBegan:Connect(function(Key,IsChat)
  117. if IsChat then return end
  118. if Key.KeyCode == Enum.KeyCode.Q then
  119. Enabled = not Enabled
  120. SetPlayer()
  121. end
  122. if Key.KeyCode == Enum.KeyCode.W then
  123. Forward = true
  124. end
  125. if Key.KeyCode == Enum.KeyCode.S then
  126. Back = true
  127. end
  128. if Key.KeyCode == Enum.KeyCode.A then
  129. Left = true
  130. end
  131. if Key.KeyCode == Enum.KeyCode.D then
  132. Right = true
  133. end
  134. if Key.KeyCode == Enum.KeyCode.Space then
  135. Up = true
  136. end
  137. if Key.KeyCode == Enum.KeyCode.LeftControl then
  138. Down = true
  139. end
  140. end)
  141.  
  142. Input.InputEnded:Connect(function(Key,IsChat)
  143. if IsChat then return end
  144. if Key.KeyCode == Enum.KeyCode.W then
  145. Forward = false
  146. end
  147. if Key.KeyCode == Enum.KeyCode.S then
  148. Back = false
  149. end
  150. if Key.KeyCode == Enum.KeyCode.A then
  151. Left = false
  152. end
  153. if Key.KeyCode == Enum.KeyCode.D then
  154. Right = false
  155. end
  156. if Key.KeyCode == Enum.KeyCode.Space then
  157. Up = false
  158. end
  159. if Key.KeyCode == Enum.KeyCode.LeftControl then
  160. Down = false
  161. end
  162. end)
  163.  
  164. while game:GetService("RunService").RenderStepped:Wait() do
  165. if Enabled then
  166. pcall(function()
  167. if Forward then
  168. Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
  169. end
  170. if Back then
  171. Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
  172. end
  173. if Left then
  174. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  175. end
  176. if Right then
  177. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  178. end
  179. if Up then
  180. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  181. end
  182. if Down then
  183. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  184. end
  185. end)
  186. end
  187. end
  188. end)
  189.  
  190.  
  191. gravity.Name = "gravity"
  192. gravity.Parent = ImageButton
  193. gravity.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  194. gravity.BackgroundTransparency = 0.500
  195. gravity.Position = UDim2.new(0.124444455, 0, 0.597173154, 0)
  196. gravity.Size = UDim2.new(0, 66, 0, 20)
  197. gravity.Font = Enum.Font.GothamBlack
  198. gravity.Text = "GRAVITY"
  199. gravity.TextColor3 = Color3.fromRGB(0, 0, 0)
  200. gravity.TextSize = 14.000
  201. gravity.MouseButton1Down:connect(function()
  202. if Gravity == true then
  203. Gravity = false
  204. game.workspace.Gravity = 196.2
  205. else
  206. Gravity = true
  207. game.workspace.Gravity = 45
  208. end
  209. end)
  210.  
  211.  
  212. graphics.Name = "graphics"
  213. graphics.Parent = ImageButton
  214. graphics.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  215. graphics.BackgroundTransparency = 0.500
  216. graphics.Position = UDim2.new(0.599999964, 0, 0.597173154, 0)
  217. graphics.Size = UDim2.new(0, 66, 0, 20)
  218. graphics.Font = Enum.Font.GothamBlack
  219. graphics.Text = "GRAPHICS"
  220. graphics.TextColor3 = Color3.fromRGB(0, 0, 0)
  221. graphics.TextScaled = true
  222. graphics.TextSize = 14.000
  223. graphics.TextWrapped = true
  224. graphics.MouseButton1Down:connect(function()
  225. -- Roblox Graphics Enhancher
  226. local light = game.Lighting
  227. for i, v in pairs(light:GetChildren()) do
  228. v:Destroy()
  229. end
  230. end)
  231.  
  232. fps.Name = "fps"
  233. fps.Parent = ImageButton
  234. fps.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  235. fps.BackgroundTransparency = 0.500
  236. fps.Position = UDim2.new(0.124444425, 0, 0.69611311, 0)
  237. fps.Size = UDim2.new(0, 66, 0, 20)
  238. fps.Font = Enum.Font.GothamBlack
  239. fps.Text = "MORE FPS"
  240. fps.TextColor3 = Color3.fromRGB(0, 0, 0)
  241. fps.TextScaled = true
  242. fps.TextSize = 14.000
  243. fps.TextWrapped = true
  244. fps.MouseButton1Click:Connect(function()
  245. for _,v in pairs(workspace:GetDescendants()) do
  246. if v.ClassName == "Part"
  247. or v.ClassName == "SpawnLocation"
  248. or v.ClassName == "WedgePart"
  249. or v.ClassName == "Terrain"
  250. or v.ClassName == "MeshPart" then
  251. v.Material = "Plastic"
  252. end
  253. end
  254.  
  255. for _,v in pairs(workspace:GetDescendants()) do
  256. if v.ClassName == "Decal"
  257. or v.ClassName == "Texture" then
  258. v:Destroy()
  259. end
  260. end
  261. end)
  262.  
  263.  
  264. rejoin.Name = "rejoin"
  265. rejoin.Parent = ImageButton
  266. rejoin.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  267. rejoin.BackgroundTransparency = 0.500
  268. rejoin.Position = UDim2.new(0.599999964, 0, 0.69611311, 0)
  269. rejoin.Size = UDim2.new(0, 66, 0, 20)
  270. rejoin.Font = Enum.Font.GothamBlack
  271. rejoin.Text = "REJOIN"
  272. rejoin.TextColor3 = Color3.fromRGB(0, 0, 0)
  273. rejoin.TextScaled = true
  274. rejoin.TextSize = 14.000
  275. rejoin.TextWrapped = true
  276. rejoin.MouseButton1Click:Connect(function()
  277. game:GetService("TeleportService"):Teleport(game.PlaceId, game.Players.LocalPlayer)
  278. end)
  279.  
  280. autofarm.Name = "autofarm"
  281. autofarm.Parent = ImageButton
  282. autofarm.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  283. autofarm.BackgroundTransparency = 0.500
  284. autofarm.Position = UDim2.new(0.599999964, 0, 0.402826875, 0)
  285. autofarm.Size = UDim2.new(0, 66, 0, 20)
  286. autofarm.Font = Enum.Font.GothamBlack
  287. autofarm.Text = "AUTOFARM"
  288. autofarm.TextColor3 = Color3.fromRGB(0, 0, 0)
  289. autofarm.TextScaled = true
  290. autofarm.TextSize = 14.000
  291. autofarm.TextWrapped = true
  292. autofarm.MouseButton1Down:connect(function()
  293. loadstring(game:HttpGet("https://pastebin.com/raw/Z3iAXASr", true))()
  294.  
  295. end)
  296.  
  297. chatspam.Name = "chatspam"
  298. chatspam.Parent = ImageButton
  299. chatspam.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  300. chatspam.BackgroundTransparency = 0.500
  301. chatspam.Position = UDim2.new(0.124444425, 0, 0.402826846, 0)
  302. chatspam.Size = UDim2.new(0, 66, 0, 20)
  303. chatspam.Font = Enum.Font.GothamBlack
  304. chatspam.Text = "CHAT SPAM"
  305. chatspam.TextColor3 = Color3.fromRGB(0, 0, 0)
  306. chatspam.TextScaled = true
  307. chatspam.TextSize = 14.000
  308. chatspam.TextWrapped = true
  309. chatspam.MouseButton1Down:connect(function()
  310. while true do wait(1)
  311.  
  312. local A_1 = "Go Sub To TurningGlobe On Youtube He Just Gave us this amazing script" local A_2 = "All"
  313. local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2) end
  314. end)
  315.  
  316. creds.Name = "creds"
  317. creds.Parent = ImageButton
  318. creds.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  319. creds.BackgroundTransparency = 1.000
  320. creds.Position = UDim2.new(0.195555553, 0, 0.798586547, 0)
  321. creds.Size = UDim2.new(0, 136, 0, 20)
  322. creds.Font = Enum.Font.GothamBlack
  323. creds.Text = "TurningGlobe"
  324. creds.TextColor3 = Color3.fromRGB(0, 0, 0)
  325. creds.TextScaled = true
  326. creds.TextSize = 14.000
  327. creds.TextWrapped = true
  328.  
  329. close.Name = "close"
  330. close.Parent = ImageButton
  331. close.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  332. close.BackgroundTransparency = 1.000
  333. close.Position = UDim2.new(0.444444448, 0, 0.431095392, 0)
  334. close.Size = UDim2.new(0, 25, 0, 12)
  335. close.Font = Enum.Font.GothamBlack
  336. close.Text = ""
  337. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  338. close.TextScaled = true
  339. close.TextSize = 14.000
  340. close.TextWrapped = true
  341. close.MouseButton1Down:connect(function()
  342. ImageButton.Visible = false
  343. open.Visible = true
  344. end)
  345.  
  346. open.Name = "open"
  347. open.Parent = Frame
  348. open.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  349. open.BackgroundTransparency = 0.500
  350. open.Position = UDim2.new(-0.276666701, 0, -4.00282669, 0)
  351. open.Size = UDim2.new(0, 66, 0, 20)
  352. open.Font = Enum.Font.GothamBlack
  353. open.Text = "OPEN"
  354. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  355. open.TextScaled = true
  356. open.TextSize = 14.000
  357. open.TextWrapped = true
  358. open.MouseButton1Down:connect(function()
  359. ImageButton.Visible = true
  360. open.Visible = false
  361. end)
Add Comment
Please, Sign In to add comment