Advertisement
Guest User

New adopt me gui

a guest
Nov 23rd, 2019
151,363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.52 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local AdoptMeGUI = Instance.new("Frame")
  8. local TextButton = Instance.new("TextButton")
  9. local SPEED = Instance.new("TextButton")
  10. local GRAVITY = Instance.new("TextButton")
  11. local BTOOLS = Instance.new("TextButton")
  12. local CLICKTP = Instance.new("TextButton")
  13. local FLY = Instance.new("TextButton")
  14. local CLICKTP_2 = Instance.new("TextButton")
  15. local TextLabel = Instance.new("TextLabel")
  16. local close = Instance.new("TextButton")
  17. local open = Instance.new("TextButton")
  18.  
  19. --Properties:
  20.  
  21. ScreenGui.Parent = game.CoreGui
  22. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  23.  
  24. AdoptMeGUI.Name = "AdoptMeGUI"
  25. AdoptMeGUI.Parent = ScreenGui
  26. AdoptMeGUI.Active = true
  27. AdoptMeGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  28. AdoptMeGUI.Position = UDim2.new(0.530071318, 0, 0.259904921, 0)
  29. AdoptMeGUI.Size = UDim2.new(0, 271, 0, 393)
  30. AdoptMeGUI.Visible = false
  31. AdoptMeGUI.Style = Enum.FrameStyle.ChatRed
  32. AdoptMeGUI.Draggable = true
  33.  
  34. TextButton.Parent = AdoptMeGUI
  35. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextButton.Position = UDim2.new(-0.0322707035, 0, -0.01661391, 0)
  37. TextButton.Size = UDim2.new(0, 250, 0, 48)
  38. TextButton.Style = Enum.ButtonStyle.RobloxButtonDefault
  39. TextButton.Font = Enum.Font.GothamBlack
  40. TextButton.Text = "ADOPT ME GUI - TURNINGGLOBE"
  41. TextButton.TextColor3 = Color3.new(1, 1, 1)
  42. TextButton.TextSize = 14
  43.  
  44. SPEED.Name = "SPEED"
  45. SPEED.Parent = AdoptMeGUI
  46. SPEED.BackgroundColor3 = Color3.new(1, 1, 1)
  47. SPEED.Position = UDim2.new(0.0354699939, 0, 0.157492071, 0)
  48. SPEED.Size = UDim2.new(0, 141, 0, 27)
  49. SPEED.Style = Enum.ButtonStyle.RobloxButton
  50. SPEED.Font = Enum.Font.Gotham
  51. SPEED.Text = "SPEED[X]"
  52. SPEED.TextColor3 = Color3.new(1, 1, 1)
  53. SPEED.TextSize = 14
  54. SPEED.MouseButton1Down:connect(function()
  55. local walkspeedplayer = game:GetService("Players").LocalPlayer
  56. local walkspeedmouse = walkspeedplayer:GetMouse()
  57.  
  58. local walkspeedenabled = false
  59.  
  60. function x_walkspeed(key)
  61. if (key == "x") then
  62. if walkspeedenabled == false then
  63. _G.WS = 200;
  64. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  65. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  66. Humanoid.WalkSpeed = _G.WS;
  67. end)
  68. Humanoid.WalkSpeed = _G.WS;
  69.  
  70. walkspeedenabled = true
  71. elseif walkspeedenabled == true then
  72. _G.WS = 20;
  73. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  74. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  75. Humanoid.WalkSpeed = _G.WS;
  76. end)
  77. Humanoid.WalkSpeed = _G.WS;
  78.  
  79. walkspeedenabled = false
  80. end
  81. end
  82. end
  83.  
  84. walkspeedmouse.KeyDown:connect(x_walkspeed)
  85.  
  86. end)
  87.  
  88. GRAVITY.Name = "GRAVITY"
  89. GRAVITY.Parent = AdoptMeGUI
  90. GRAVITY.BackgroundColor3 = Color3.new(1, 1, 1)
  91. GRAVITY.Position = UDim2.new(0.0317799486, 0, 0.330520093, 0)
  92. GRAVITY.Size = UDim2.new(0, 141, 0, 27)
  93. GRAVITY.Style = Enum.ButtonStyle.RobloxButton
  94. GRAVITY.Font = Enum.Font.Gotham
  95. GRAVITY.Text = "GRAVITY"
  96. GRAVITY.TextColor3 = Color3.new(1, 1, 1)
  97. GRAVITY.TextSize = 14
  98. GRAVITY.MouseButton1Down:connect(function()
  99. if Gravity == true then
  100. Gravity = false
  101. game.workspace.Gravity = 196.2
  102. else
  103. Gravity = true
  104. game.workspace.Gravity = 45
  105. end
  106. end)
  107.  
  108. BTOOLS.Name = "BTOOLS"
  109. BTOOLS.Parent = AdoptMeGUI
  110. BTOOLS.BackgroundColor3 = Color3.new(1, 1, 1)
  111. BTOOLS.Position = UDim2.new(0.408163697, 0, 0.465380073, 0)
  112. BTOOLS.Size = UDim2.new(0, 141, 0, 27)
  113. BTOOLS.Style = Enum.ButtonStyle.RobloxButton
  114. BTOOLS.Font = Enum.Font.Gotham
  115. BTOOLS.Text = "BTOOLS"
  116. BTOOLS.TextColor3 = Color3.new(1, 1, 1)
  117. BTOOLS.TextSize = 14
  118. BTOOLS.MouseButton1Down:connect(function()
  119. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  120. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  121. if child.ClassName == "Part" then
  122. child.Locked = false
  123. end
  124. if child.ClassName == "MeshPart" then
  125. child.Locked = false
  126. end
  127. if child.ClassName == "UnionOperation" then
  128. child.Locked = false
  129. end
  130. if child.ClassName == "Model" then
  131. for index, chil in pairs(child:GetChildren()) do
  132. if chil.ClassName == "Part" then
  133. chil.Locked = false
  134. end
  135. if chil.ClassName == "MeshPart" then
  136. chil.Locked = false
  137. end
  138. if chil.ClassName == "UnionOperation" then
  139. chil.Locked = false
  140. end
  141. if chil.ClassName == "Model" then
  142. for index, childe in pairs(chil:GetChildren()) do
  143. if childe.ClassName == "Part" then
  144. childe.Locked = false
  145. end
  146. if childe.ClassName == "MeshPart" then
  147. childe.Locked = false
  148. end
  149. if childe.ClassName == "UnionOperation" then
  150. childe.Locked = false
  151. end
  152. if childe.ClassName == "Model" then
  153. for index, childeo in pairs(childe:GetChildren()) do
  154. if childeo.ClassName == "Part" then
  155. childeo.Locked = false
  156. end
  157. if childeo.ClassName == "MeshPart" then
  158. childeo.Locked = false
  159. end
  160. if childeo.ClassName == "UnionOperation" then
  161. childeo.Locked = false
  162. end
  163. if childeo.ClassName == "Model" then
  164. end
  165. end
  166. end
  167. end
  168. end
  169. end
  170. end
  171. end
  172. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  173. c.BinType = Enum.BinType.Hammer
  174. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  175. c.BinType = Enum.BinType.Clone
  176. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  177. c.BinType = Enum.BinType.Grab
  178. end)
  179.  
  180. CLICKTP.Name = "CLICKTP"
  181. CLICKTP.Parent = AdoptMeGUI
  182. CLICKTP.BackgroundColor3 = Color3.new(1, 1, 1)
  183. CLICKTP.Position = UDim2.new(0.400783658, 0, 0.58751756, 0)
  184. CLICKTP.Size = UDim2.new(0, 141, 0, 27)
  185. CLICKTP.Style = Enum.ButtonStyle.RobloxButton
  186. CLICKTP.Font = Enum.Font.Gotham
  187. CLICKTP.Text = "CLICKTP [N]"
  188. CLICKTP.TextColor3 = Color3.new(1, 1, 1)
  189. CLICKTP.TextSize = 14
  190. CLICKTP.MouseButton1Click:Connect(function()
  191. toggle = true
  192. togglekey = "n" --Key that you will use to toggle the on and off
  193. killkey = "k" --Key that you will use to kill a player
  194. function Hint(txt)
  195. local b = Instance.new('Hint', workspace)
  196. b.Text = txt
  197. wait(2)
  198. b:Destroy()
  199. end
  200. Local = game:GetService('Players').LocalPlayer
  201. Mouse = Local:GetMouse()
  202. Mouse.Button1Down:connect(function()
  203. pcall(function()
  204. if toggle then
  205. Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
  206. end
  207. end)
  208. end)
  209. Mouse.KeyDown:connect(function(key)
  210. if key == togglekey then
  211. if toggle then
  212. toggle = false
  213. Hint('Turned Off!')
  214. print ('Turned Off!')
  215. else
  216. toggle = true
  217. Hint('Turned On!')
  218. print ('Turned On!')
  219. end
  220. elseif key == killkey then
  221. if toggle then
  222. pcall(function()
  223. Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
  224. Hint('Killed ' .. Mouse.Target.Parent.Name)
  225. end)
  226. end
  227. end
  228. end)
  229. end)
  230.  
  231. FLY.Name = "FLY"
  232. FLY.Parent = AdoptMeGUI
  233. FLY.BackgroundColor3 = Color3.new(1, 1, 1)
  234. FLY.Position = UDim2.new(0.189623386, 0, 0.690513253, 0)
  235. FLY.Size = UDim2.new(0, 146, 0, 42)
  236. FLY.Style = Enum.ButtonStyle.RobloxButton
  237. FLY.Font = Enum.Font.Gotham
  238. FLY.Text = "FLY[Q]"
  239. FLY.TextColor3 = Color3.new(1, 1, 1)
  240. FLY.TextSize = 14
  241. FLY.MouseButton1Down:connect(function()
  242. local Enabled = false
  243. local Camera = game.Workspace.CurrentCamera
  244. local Player = game:GetService("Players").LocalPlayer
  245. local Input = game:GetService("UserInputService")
  246. local Forward = false
  247. local Back = false
  248. local Left = false
  249. local Right = false
  250. local Up = false
  251. local Down = false
  252.  
  253. local function SetPlayer()
  254. for i,v in pairs(Player.Character:GetChildren()) do
  255. pcall(function()
  256. v.Anchored = not v.Anchored
  257. end)
  258. end
  259. end
  260.  
  261. Input.InputBegan:Connect(function(Key,IsChat)
  262. if IsChat then return end
  263. if Key.KeyCode == Enum.KeyCode.Q then
  264. Enabled = not Enabled
  265. SetPlayer()
  266. end
  267. if Key.KeyCode == Enum.KeyCode.W then
  268. Forward = true
  269. end
  270. if Key.KeyCode == Enum.KeyCode.S then
  271. Back = true
  272. end
  273. if Key.KeyCode == Enum.KeyCode.A then
  274. Left = true
  275. end
  276. if Key.KeyCode == Enum.KeyCode.D then
  277. Right = true
  278. end
  279. if Key.KeyCode == Enum.KeyCode.Space then
  280. Up = true
  281. end
  282. if Key.KeyCode == Enum.KeyCode.LeftControl then
  283. Down = true
  284. end
  285. end)
  286.  
  287. Input.InputEnded:Connect(function(Key,IsChat)
  288. if IsChat then return end
  289. if Key.KeyCode == Enum.KeyCode.W then
  290. Forward = false
  291. end
  292. if Key.KeyCode == Enum.KeyCode.S then
  293. Back = false
  294. end
  295. if Key.KeyCode == Enum.KeyCode.A then
  296. Left = false
  297. end
  298. if Key.KeyCode == Enum.KeyCode.D then
  299. Right = false
  300. end
  301. if Key.KeyCode == Enum.KeyCode.Space then
  302. Up = false
  303. end
  304. if Key.KeyCode == Enum.KeyCode.LeftControl then
  305. Down = false
  306. end
  307. end)
  308.  
  309. while game:GetService("RunService").RenderStepped:Wait() do
  310. if Enabled then
  311. pcall(function()
  312. if Forward then
  313. Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
  314. end
  315. if Back then
  316. Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
  317. end
  318. if Left then
  319. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  320. end
  321. if Right then
  322. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  323. end
  324. if Up then
  325. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  326. end
  327. if Down then
  328. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  329. end
  330. end)
  331. end
  332. end
  333. end)
  334.  
  335. CLICKTP_2.Name = "CLICKTP"
  336. CLICKTP_2.Parent = AdoptMeGUI
  337. CLICKTP_2.BackgroundColor3 = Color3.new(1, 1, 1)
  338. CLICKTP_2.Position = UDim2.new(0.0919121876, 0, 0.808953583, 0)
  339. CLICKTP_2.Size = UDim2.new(0, 192, 0, 63)
  340. CLICKTP_2.Style = Enum.ButtonStyle.RobloxButton
  341. CLICKTP_2.Font = Enum.Font.Gotham
  342. CLICKTP_2.Text = "AUTO-CASH[GLITCHY]"
  343. CLICKTP_2.TextColor3 = Color3.new(1, 1, 1)
  344. CLICKTP_2.TextSize = 14
  345.  
  346. TextLabel.Parent = AdoptMeGUI
  347. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  348. TextLabel.Position = UDim2.new(0.626682878, 0, 0.264841795, 0)
  349. TextLabel.Rotation = 90
  350. TextLabel.Size = UDim2.new(0, 73, 0, 6)
  351. TextLabel.Font = Enum.Font.SourceSans
  352. TextLabel.Text = ""
  353. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  354. TextLabel.TextSize = 14
  355.  
  356. close.Name = "close"
  357. close.Parent = AdoptMeGUI
  358. close.BackgroundColor3 = Color3.new(1, 1, 1)
  359. close.Position = UDim2.new(0.808064461, 0, 0.168243796, 0)
  360. close.Size = UDim2.new(0, 50, 0, 28)
  361. close.Style = Enum.ButtonStyle.RobloxButton
  362. close.Font = Enum.Font.Gotham
  363. close.Text = "X"
  364. close.TextColor3 = Color3.new(0.666667, 0, 0)
  365. close.TextScaled = true
  366. close.TextSize = 14
  367. close.TextWrapped = true
  368. close.MouseButton1Down:connect(function()
  369. AdoptMeGUI.Visible = false
  370. open.Visible = true
  371. end)
  372.  
  373. open.Name = "open"
  374. open.Parent = ScreenGui
  375. open.BackgroundColor3 = Color3.new(1, 1, 1)
  376. open.Position = UDim2.new(0.0084221242, 0, 0.434480935, 0)
  377. open.Size = UDim2.new(0, 67, 0, 35)
  378. open.Style = Enum.ButtonStyle.RobloxButtonDefault
  379. open.Font = Enum.Font.Gotham
  380. open.Text = "OPEN"
  381. open.TextColor3 = Color3.new(1, 1, 1)
  382. open.TextSize = 15
  383. open.TextWrapped = true
  384. open.MouseButton1Down:connect(function()
  385. AdoptMeGUI.Visible = true
  386. open.Visible = false
  387. end)
  388.  
  389. -- Scripts:
  390.  
  391. local function WUQS_fake_script() -- close.LocalScript
  392. local script = Instance.new('LocalScript', close)
  393.  
  394. close.MouseButton1Down:connect(function()
  395. AdoptMeGUI.Visible = false
  396. Open.Visible = true
  397. end)
  398. end
  399. coroutine.wrap(WUQS_fake_script)()
  400. local function KAKPVA_fake_script() -- open.LocalScript
  401. local script = Instance.new('LocalScript', open)
  402.  
  403. Open.MouseButton1Down:connect(function()
  404. AdoptMeGUI.Visible = true
  405. Open.Visible = false
  406. end)
  407.  
  408. end
  409. coroutine.wrap(KAKPVA_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement