Advertisement
Guest User

New adopt me gui

a guest
Jan 18th, 2020
45,766
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.51 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local speed = Instance.new("TextButton")
  10. local btools = Instance.new("TextButton")
  11. local fps = Instance.new("TextButton")
  12. local gravity = Instance.new("TextButton")
  13. local tp = Instance.new("TextButton")
  14. local fly = Instance.new("TextButton")
  15. local fling = Instance.new("TextButton")
  16. local dsadsadsad = Instance.new("TextButton")
  17. local TextLabel_2 = Instance.new("TextLabel")
  18. local TextLabel_3 = Instance.new("TextLabel")
  19. local close = Instance.new("TextButton")
  20. local open = Instance.new("TextButton")
  21.  
  22. --Properties:
  23.  
  24. ScreenGui.Parent = game.CoreGui
  25. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. Frame.Parent = ScreenGui
  28. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Frame.BorderColor3 = Color3.new(0, 1, 1)
  30. Frame.BorderSizePixel = 2
  31. Frame.Position = UDim2.new(0.22741285, 0, 0.185492754, 0)
  32. Frame.Size = UDim2.new(0, 159, 0, 291)
  33. Frame.Visible = false
  34. Frame.Active = true
  35. Frame.Draggable = true
  36.  
  37. TextLabel.Parent = Frame
  38. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  39. TextLabel.BackgroundTransparency = 0.5
  40. TextLabel.BorderColor3 = Color3.new(0, 1, 1)
  41. TextLabel.BorderSizePixel = 3
  42. TextLabel.Size = UDim2.new(0, 159, 0, 38)
  43. TextLabel.Font = Enum.Font.GothamBold
  44. TextLabel.Text = "ADOPT ME BY TURNINGGLOBE"
  45. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  46. TextLabel.TextScaled = true
  47. TextLabel.TextSize = 14
  48. TextLabel.TextWrapped = true
  49.  
  50. speed.Name = "speed"
  51. speed.Parent = Frame
  52. speed.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  53. speed.Position = UDim2.new(0, 0, 0.19583334, 0)
  54. speed.Size = UDim2.new(0, 159, 0, 22)
  55. speed.Font = Enum.Font.Gotham
  56. speed.Text = "SPEED[X]"
  57. speed.TextColor3 = Color3.new(0, 0, 0)
  58. speed.TextScaled = true
  59. speed.TextSize = 14
  60. speed.TextWrapped = true
  61. speed.MouseButton1Down:connect(function()
  62. local walkspeedplayer = game:GetService("Players").LocalPlayer
  63. local walkspeedmouse = walkspeedplayer:GetMouse()
  64.  
  65. local walkspeedenabled = false
  66.  
  67. function x_walkspeed(key)
  68. if (key == "x") then
  69. if walkspeedenabled == false then
  70. _G.WS = 200;
  71. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  72. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  73. Humanoid.WalkSpeed = _G.WS;
  74. end)
  75. Humanoid.WalkSpeed = _G.WS;
  76.  
  77. walkspeedenabled = true
  78. elseif walkspeedenabled == true then
  79. _G.WS = 20;
  80. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  81. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  82. Humanoid.WalkSpeed = _G.WS;
  83. end)
  84. Humanoid.WalkSpeed = _G.WS;
  85.  
  86. walkspeedenabled = false
  87. end
  88. end
  89. end
  90.  
  91. walkspeedmouse.KeyDown:connect(x_walkspeed)
  92.  
  93. end)
  94.  
  95. btools.Name = "btools"
  96. btools.Parent = Frame
  97. btools.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  98. btools.Position = UDim2.new(0, 0, 0.3125, 0)
  99. btools.Size = UDim2.new(0, 159, 0, 22)
  100. btools.Font = Enum.Font.Gotham
  101. btools.Text = "BTOOLS"
  102. btools.TextColor3 = Color3.new(0, 0, 0)
  103. btools.TextScaled = true
  104. btools.TextSize = 14
  105. btools.TextWrapped = true
  106. btools.MouseButton1Down:connect(function()
  107. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  108. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  109. if child.ClassName == "Part" then
  110. child.Locked = false
  111. end
  112. if child.ClassName == "MeshPart" then
  113. child.Locked = false
  114. end
  115. if child.ClassName == "UnionOperation" then
  116. child.Locked = false
  117. end
  118. if child.ClassName == "Model" then
  119. for index, chil in pairs(child:GetChildren()) do
  120. if chil.ClassName == "Part" then
  121. chil.Locked = false
  122. end
  123. if chil.ClassName == "MeshPart" then
  124. chil.Locked = false
  125. end
  126. if chil.ClassName == "UnionOperation" then
  127. chil.Locked = false
  128. end
  129. if chil.ClassName == "Model" then
  130. for index, childe in pairs(chil:GetChildren()) do
  131. if childe.ClassName == "Part" then
  132. childe.Locked = false
  133. end
  134. if childe.ClassName == "MeshPart" then
  135. childe.Locked = false
  136. end
  137. if childe.ClassName == "UnionOperation" then
  138. childe.Locked = false
  139. end
  140. if childe.ClassName == "Model" then
  141. for index, childeo in pairs(childe:GetChildren()) do
  142. if childeo.ClassName == "Part" then
  143. childeo.Locked = false
  144. end
  145. if childeo.ClassName == "MeshPart" then
  146. childeo.Locked = false
  147. end
  148. if childeo.ClassName == "UnionOperation" then
  149. childeo.Locked = false
  150. end
  151. if childeo.ClassName == "Model" then
  152. end
  153. end
  154. end
  155. end
  156. end
  157. end
  158. end
  159. end
  160. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  161. c.BinType = Enum.BinType.Hammer
  162. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  163. c.BinType = Enum.BinType.Clone
  164. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  165. c.BinType = Enum.BinType.Grab
  166. end)
  167.  
  168. fps.Name = "fps"
  169. fps.Parent = Frame
  170. fps.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  171. fps.Position = UDim2.new(0, 0, 0.429166675, 0)
  172. fps.Size = UDim2.new(0, 159, 0, 22)
  173. fps.Font = Enum.Font.Gotham
  174. fps.Text = "FPS BOOSTER"
  175. fps.TextColor3 = Color3.new(0, 0, 0)
  176. fps.TextScaled = true
  177. fps.TextSize = 14
  178. fps.TextWrapped = true
  179. fps.MouseButton1Click:Connect(function()
  180. for _,v in pairs(workspace:GetDescendants()) do
  181. if v.ClassName == "Part"
  182. or v.ClassName == "SpawnLocation"
  183. or v.ClassName == "WedgePart"
  184. or v.ClassName == "Terrain"
  185. or v.ClassName == "MeshPart" then
  186. v.Material = "Plastic"
  187. end
  188. end
  189.  
  190. for _,v in pairs(workspace:GetDescendants()) do
  191. if v.ClassName == "Decal"
  192. or v.ClassName == "Texture" then
  193. v:Destroy()
  194. end
  195. end
  196. end)
  197.  
  198. gravity.Name = "gravity"
  199. gravity.Parent = Frame
  200. gravity.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  201. gravity.Position = UDim2.new(0, 0, 0.545833349, 0)
  202. gravity.Size = UDim2.new(0, 159, 0, 22)
  203. gravity.Font = Enum.Font.Gotham
  204. gravity.Text = "GRAVITY"
  205. gravity.TextColor3 = Color3.new(0, 0, 0)
  206. gravity.TextScaled = true
  207. gravity.TextSize = 14
  208. gravity.TextWrapped = true
  209. gravity.MouseButton1Down:connect(function()
  210. if Gravity == true then
  211. Gravity = false
  212. game.workspace.Gravity = 196.2
  213. else
  214. Gravity = true
  215. game.workspace.Gravity = 45
  216. end
  217. end)
  218.  
  219. tp.Name = "tp"
  220. tp.Parent = Frame
  221. tp.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  222. tp.Position = UDim2.new(0, 0, 0.666666687, 0)
  223. tp.Size = UDim2.new(0, 159, 0, 22)
  224. tp.Font = Enum.Font.Gotham
  225. tp.Text = "CLICKTP[N]"
  226. tp.TextColor3 = Color3.new(0, 0, 0)
  227. tp.TextScaled = true
  228. tp.TextSize = 14
  229. tp.TextWrapped = true
  230. tp.MouseButton1Click:Connect(function()
  231. toggle = true
  232. togglekey = "n" --Key that you will use to toggle the on and off
  233. killkey = "k" --Key that you will use to kill a player
  234. function Hint(txt)
  235. local b = Instance.new('Hint', workspace)
  236. b.Text = txt
  237. wait(2)
  238. b:Destroy()
  239. end
  240. Local = game:GetService('Players').LocalPlayer
  241. Mouse = Local:GetMouse()
  242. Mouse.Button1Down:connect(function()
  243. pcall(function()
  244. if toggle then
  245. Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
  246. end
  247. end)
  248. end)
  249. Mouse.KeyDown:connect(function(key)
  250. if key == togglekey then
  251. if toggle then
  252. toggle = false
  253. Hint('Turned Off!')
  254. print ('Turned Off!')
  255. else
  256. toggle = true
  257. Hint('Turned On!')
  258. print ('Turned On!')
  259. end
  260. elseif key == killkey then
  261. if toggle then
  262. pcall(function()
  263. Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
  264. Hint('Killed ' .. Mouse.Target.Parent.Name)
  265. end)
  266. end
  267. end
  268. end)
  269. end)
  270.  
  271. fly.Name = "fly"
  272. fly.Parent = Frame
  273. fly.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  274. fly.Position = UDim2.new(0, 0, 0.783333302, 0)
  275. fly.Size = UDim2.new(0, 159, 0, 22)
  276. fly.Font = Enum.Font.Gotham
  277. fly.Text = "FLY[Q]"
  278. fly.TextColor3 = Color3.new(0, 0, 0)
  279. fly.TextScaled = true
  280. fly.TextSize = 14
  281. fly.TextWrapped = true
  282. fly.MouseButton1Down:connect(function()
  283. local Enabled = false
  284. local Camera = game.Workspace.CurrentCamera
  285. local Player = game:GetService("Players").LocalPlayer
  286. local Input = game:GetService("UserInputService")
  287. local Forward = false
  288. local Back = false
  289. local Left = false
  290. local Right = false
  291. local Up = false
  292. local Down = false
  293.  
  294. local function SetPlayer()
  295. for i,v in pairs(Player.Character:GetChildren()) do
  296. pcall(function()
  297. v.Anchored = not v.Anchored
  298. end)
  299. end
  300. end
  301.  
  302. Input.InputBegan:Connect(function(Key,IsChat)
  303. if IsChat then return end
  304. if Key.KeyCode == Enum.KeyCode.Q then
  305. Enabled = not Enabled
  306. SetPlayer()
  307. end
  308. if Key.KeyCode == Enum.KeyCode.W then
  309. Forward = true
  310. end
  311. if Key.KeyCode == Enum.KeyCode.S then
  312. Back = true
  313. end
  314. if Key.KeyCode == Enum.KeyCode.A then
  315. Left = true
  316. end
  317. if Key.KeyCode == Enum.KeyCode.D then
  318. Right = true
  319. end
  320. if Key.KeyCode == Enum.KeyCode.Space then
  321. Up = true
  322. end
  323. if Key.KeyCode == Enum.KeyCode.LeftControl then
  324. Down = true
  325. end
  326. end)
  327.  
  328. Input.InputEnded:Connect(function(Key,IsChat)
  329. if IsChat then return end
  330. if Key.KeyCode == Enum.KeyCode.W then
  331. Forward = false
  332. end
  333. if Key.KeyCode == Enum.KeyCode.S then
  334. Back = false
  335. end
  336. if Key.KeyCode == Enum.KeyCode.A then
  337. Left = false
  338. end
  339. if Key.KeyCode == Enum.KeyCode.D then
  340. Right = false
  341. end
  342. if Key.KeyCode == Enum.KeyCode.Space then
  343. Up = false
  344. end
  345. if Key.KeyCode == Enum.KeyCode.LeftControl then
  346. Down = false
  347. end
  348. end)
  349.  
  350. while game:GetService("RunService").RenderStepped:Wait() do
  351. if Enabled then
  352. pcall(function()
  353. if Forward then
  354. Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
  355. end
  356. if Back then
  357. Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
  358. end
  359. if Left then
  360. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  361. end
  362. if Right then
  363. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  364. end
  365. if Up then
  366. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  367. end
  368. if Down then
  369. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  370. end
  371. end)
  372. end
  373. end
  374. end)
  375.  
  376. fling.Name = "fling"
  377. fling.Parent = Frame
  378. fling.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  379. fling.Position = UDim2.new(0, 0, 0.908333302, 0)
  380. fling.Size = UDim2.new(0, 159, 0, 22)
  381. fling.Font = Enum.Font.Gotham
  382. fling.Text = "FLING GUI "
  383. fling.TextColor3 = Color3.new(0, 0, 0)
  384. fling.TextScaled = true
  385. fling.TextSize = 14
  386. fling.TextWrapped = true
  387. fling.MouseButton1Click:Connect(function()
  388. -- Made By JackMcJagger15
  389. local FlingKill = Instance.new("ScreenGui")
  390. local Main = Instance.new("Frame")
  391. local Label = Instance.new("Frame")
  392. local Shadow = Instance.new("Frame")
  393. local StartKill = Instance.new("TextButton")
  394. local StopKill = Instance.new("TextButton")
  395. local Instructions = Instance.new("TextLabel")
  396. local CurrentPower = Instance.new("TextLabel")
  397. local Recomendation = Instance.new("TextLabel")
  398. local NameOfGui = Instance.new("TextLabel")
  399. local Exit = Instance.new("TextButton")
  400. local UPArrow = Instance.new("TextButton")
  401. local DownArrow = Instance.new("TextButton")
  402.  
  403. -- Properties
  404.  
  405. FlingKill.Name = "Fling/Kill"
  406. FlingKill.Parent = game.CoreGui
  407.  
  408. Main.Name = "Main"
  409. Main.Parent = FlingKill
  410. Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  411. Main.BorderSizePixel = 0
  412. Main.Position = UDim2.new(0.702554762, 0, 0.446640313, 0)
  413. Main.Size = UDim2.new(0, 217, 0, 233)
  414. Main.Selectable = true
  415. Main.Active = true
  416. Main.Draggable = true
  417.  
  418. Label.Name = "Label"
  419. Label.Parent = Main
  420. Label.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  421. Label.BorderSizePixel = 0
  422. Label.Size = UDim2.new(0, 217, 0, 27)
  423.  
  424. Shadow.Name = "Shadow"
  425. Shadow.Parent = Main
  426. Shadow.BackgroundColor3 = Color3.new(0.67451, 0.694118, 0.705882)
  427. Shadow.BorderSizePixel = 0
  428. Shadow.Position = UDim2.new(0, 0, 0.115879826, 0)
  429. Shadow.Size = UDim2.new(0, 217, 0, 9)
  430.  
  431. StartKill.Name = "StartKill"
  432. StartKill.Parent = Main
  433. StartKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  434. StartKill.BorderSizePixel = 0
  435. StartKill.Position = UDim2.new(0.195852548, 0, 0.227467805, 0)
  436. StartKill.Size = UDim2.new(0, 126, 0, 23)
  437. StartKill.Font = Enum.Font.Cartoon
  438. StartKill.Text = "FE Kill/Fling"
  439. StartKill.TextColor3 = Color3.new(0, 0, 0)
  440. StartKill.TextSize = 14
  441.  
  442. StopKill.Name = "StopKill"
  443. StopKill.Parent = Main
  444. StopKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  445. StopKill.BorderSizePixel = 0
  446. StopKill.Position = UDim2.new(0.207373276, 0, 0.38197428, 0)
  447. StopKill.Size = UDim2.new(0, 124, 0, 23)
  448. StopKill.Font = Enum.Font.Cartoon
  449. StopKill.Text = "Stop FE Kill/Fling"
  450. StopKill.TextColor3 = Color3.new(0, 0, 0)
  451. StopKill.TextSize = 14
  452.  
  453. Instructions.Name = "Instructions"
  454. Instructions.Parent = Main
  455. Instructions.BackgroundColor3 = Color3.new(1, 1, 1)
  456. Instructions.BackgroundTransparency = 1
  457. Instructions.Position = UDim2.new(0.0391705073, 0, 0.549356222, 0)
  458. Instructions.Size = UDim2.new(0, 200, 0, 32)
  459. Instructions.Font = Enum.Font.Cartoon
  460. Instructions.Text = "Just touch someone to watch the fly to their death!"
  461. Instructions.TextColor3 = Color3.new(0, 0, 0)
  462. Instructions.TextSize = 14
  463. Instructions.TextWrapped = true
  464.  
  465. CurrentPower.Name = "CurrentPower"
  466. CurrentPower.Parent = Main
  467. CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1)
  468. CurrentPower.BackgroundTransparency = 1
  469. CurrentPower.Position = UDim2.new(0.276497692, 0, 0.686695278, 0)
  470. CurrentPower.Size = UDim2.new(0, 98, 0, 36)
  471. CurrentPower.Font = Enum.Font.Cartoon
  472. CurrentPower.Text = "Current Power = 5"
  473. CurrentPower.TextColor3 = Color3.new(0, 0, 0)
  474. CurrentPower.TextSize = 14
  475.  
  476. Recomendation.Name = "Recomendation"
  477. Recomendation.Parent = Main
  478. Recomendation.BackgroundColor3 = Color3.new(1, 1, 1)
  479. Recomendation.BackgroundTransparency = 1
  480. Recomendation.Position = UDim2.new(0.0414746553, 0, 0.884120166, 0)
  481. Recomendation.Size = UDim2.new(0, 200, 0, 21)
  482. Recomendation.Font = Enum.Font.Cartoon
  483. Recomendation.Text = "Recommended Power is 5"
  484. Recomendation.TextColor3 = Color3.new(0, 0, 0)
  485. Recomendation.TextSize = 14
  486.  
  487. NameOfGui.Name = "NameOfGui"
  488. NameOfGui.Parent = Main
  489. NameOfGui.BackgroundColor3 = Color3.new(1, 1, 1)
  490. NameOfGui.BackgroundTransparency = 1
  491. NameOfGui.Position = UDim2.new(0.0806451589, 0, 0, 0)
  492. NameOfGui.Size = UDim2.new(0, 154, 0, 27)
  493. NameOfGui.Font = Enum.Font.Cartoon
  494. NameOfGui.Text = "FE Kill/Fling By JackMcJagger15"
  495. NameOfGui.TextColor3 = Color3.new(0, 0, 0)
  496. NameOfGui.TextSize = 14
  497.  
  498. Exit.Name = "Exit"
  499. Exit.Parent = Main
  500. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  501. Exit.BackgroundTransparency = 1
  502. Exit.Position = UDim2.new(0.907834113, 0, 0, 0)
  503. Exit.Size = UDim2.new(0, 20, 0, 27)
  504. Exit.Font = Enum.Font.Cartoon
  505. Exit.Text = "X"
  506. Exit.TextColor3 = Color3.new(0, 0, 0)
  507. Exit.TextSize = 14
  508.  
  509. UPArrow.Name = "UPArrow"
  510. UPArrow.Parent = Main
  511. UPArrow.BackgroundColor3 = Color3.new(1, 1, 1)
  512. UPArrow.BackgroundTransparency = 1
  513. UPArrow.Position = UDim2.new(0.0783410147, 0, 0.716738224, 0)
  514. UPArrow.Size = UDim2.new(0, 26, 0, 23)
  515. UPArrow.Font = Enum.Font.Cartoon
  516. UPArrow.Text = "Up"
  517. UPArrow.TextColor3 = Color3.new(0, 0, 0)
  518. UPArrow.TextSize = 12
  519. UPArrow.TextWrapped = true
  520.  
  521. DownArrow.Name = "DownArrow"
  522. DownArrow.Parent = Main
  523. DownArrow.BackgroundColor3 = Color3.new(1, 1, 1)
  524. DownArrow.BackgroundTransparency = 1
  525. DownArrow.Position = UDim2.new(0.792626739, 0, 0.714592278, 0)
  526. DownArrow.Size = UDim2.new(0, 26, 0, 23)
  527. DownArrow.Font = Enum.Font.Cartoon
  528. DownArrow.Text = "Down"
  529. DownArrow.TextColor3 = Color3.new(0, 0, 0)
  530. DownArrow.TextSize = 12
  531. DownArrow.TextWrapped = true
  532.  
  533. power = 500
  534. active = false
  535. local val = Instance.new("IntValue")
  536. val.Name = "Number"
  537. val.Parent = game.Players.LocalPlayer
  538. val.Value = 5
  539.  
  540. Exit.MouseButton1Click:connect(function()
  541. FlingKill.Enabled = false
  542. end)
  543.  
  544. StartKill.MouseButton1Click:connect(function()
  545. game:GetService('RunService').Stepped:connect(function()
  546. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  547. game.Players.LocalPlayer.Character.Head.CanCollide = false
  548. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  549. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  550. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  551. else
  552. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  553. game.Players.LocalPlayer.Character.Head.CanCollide = false
  554. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  555. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  556. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  557. end
  558. end
  559. end)
  560. wait(.1)
  561. local bambam = Instance.new("BodyThrust")
  562. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  563. bambam.Force = Vector3.new(power,0,power)
  564. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  565. end)
  566.  
  567. StopKill.MouseButton1Click:connect(function()
  568. active = false
  569. game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
  570. end)
  571.  
  572. UPArrow.MouseButton1Click:connect(function()
  573. power = power + 100
  574. game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1
  575. CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
  576. end)
  577.  
  578. DownArrow.MouseButton1Click:connect(function()
  579. power = power - 100
  580. game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1
  581. CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
  582. end)
  583. end)
  584.  
  585.  
  586. dsadsadsad.Name = "dsadsadsad"
  587. dsadsadsad.Parent = Frame
  588. dsadsadsad.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  589. dsadsadsad.BorderColor3 = Color3.new(1, 1, 0)
  590. dsadsadsad.BorderSizePixel = 3
  591. dsadsadsad.Position = UDim2.new(0, 0, 1.10416675, 0)
  592. dsadsadsad.Size = UDim2.new(0, 159, 0, 22)
  593. dsadsadsad.Font = Enum.Font.Gotham
  594. dsadsadsad.Text = "INFINITE MONEY"
  595. dsadsadsad.TextColor3 = Color3.new(0, 0, 0)
  596. dsadsadsad.TextScaled = true
  597. dsadsadsad.TextSize = 14
  598. dsadsadsad.TextWrapped = true
  599.  
  600. TextLabel_2.Parent = Frame
  601. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  602. TextLabel_2.BorderColor3 = Color3.new(0, 1, 1)
  603. TextLabel_2.Position = UDim2.new(0, 0, 1, 0)
  604. TextLabel_2.Size = UDim2.new(0, 0, 0, 50)
  605. TextLabel_2.Font = Enum.Font.SourceSans
  606. TextLabel_2.Text = ""
  607. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  608. TextLabel_2.TextSize = 14
  609.  
  610. TextLabel_3.Parent = Frame
  611. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  612. TextLabel_3.BorderColor3 = Color3.new(0, 1, 1)
  613. TextLabel_3.Position = UDim2.new(1, 0, 1, 0)
  614. TextLabel_3.Size = UDim2.new(0, 0, 0, 50)
  615. TextLabel_3.Font = Enum.Font.SourceSans
  616. TextLabel_3.Text = ""
  617. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  618. TextLabel_3.TextSize = 14
  619.  
  620. close.Name = "close"
  621. close.Parent = Frame
  622. close.BackgroundColor3 = Color3.new(1, 1, 1)
  623. close.BorderColor3 = Color3.new(0, 1, 1)
  624. close.BorderSizePixel = 3
  625. close.Position = UDim2.new(0.786163568, 0, -0.145833328, 0)
  626. close.Size = UDim2.new(0, 34, 0, 28)
  627. close.Font = Enum.Font.GothamBlack
  628. close.Text = "X"
  629. close.TextColor3 = Color3.new(0, 0, 0)
  630. close.TextScaled = true
  631. close.TextSize = 14
  632. close.TextWrapped = true
  633. close.MouseButton1Down:connect(function()
  634. Frame.Visible = false
  635. open.Visible = true
  636. end)
  637.  
  638. open.Name = "open"
  639. open.Parent = ScreenGui
  640. open.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  641. open.BackgroundTransparency = 0.5
  642. open.BorderSizePixel = 0
  643. open.Position = UDim2.new(0.00815494359, 0, 0.437216192, 0)
  644. open.Size = UDim2.new(0, 61, 0, 35)
  645. open.Font = Enum.Font.GothamBlack
  646. open.Text = "OPEN GUI"
  647. open.TextColor3 = Color3.new(0, 0, 0)
  648. open.TextScaled = true
  649. open.TextSize = 14
  650. open.TextWrapped = true
  651. open.MouseButton1Down:connect(function()
  652. Frame.Visible = true
  653. open.Visible = false
  654. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement