Advertisement
AimbotMan2022

Adopt me gui

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