Advertisement
Jacobmmmmm

Untitled

Aug 1st, 2021
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.56 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local UICorner = Instance.new("UICorner")
  4. local Give1millioncash = Instance.new("TextLabel")
  5. local Give1millioncashButton = Instance.new("TextButton")
  6. local UICorner_2 = Instance.new("UICorner")
  7. local FlyButton = Instance.new("TextButton")
  8. local UICorner_3 = Instance.new("UICorner")
  9. local Fly = Instance.new("TextLabel")
  10. local UnlimitedhealthButton = Instance.new("TextButton")
  11. local UICorner_4 = Instance.new("UICorner")
  12. local Unlimitedhealth = Instance.new("TextLabel")
  13. local PrintTest = Instance.new("TextLabel")
  14. local PrintTestButton = Instance.new("TextButton")
  15. local UICorner_5 = Instance.new("UICorner")
  16. local Label = Instance.new("TextLabel")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. main.Name = "main"
  23. main.Parent = ScreenGui
  24. main.BackgroundColor3 = Color3.fromRGB(53, 53, 53)
  25. main.Position = UDim2.new(0.0217687078, 0, 0.0605427995, 0)
  26. main.Size = UDim2.new(0, 222, 0, 288)
  27. main.Active = true
  28. main.Draggable = true
  29.  
  30.  
  31. UICorner.CornerRadius = UDim.new(0, 15)
  32. UICorner.Parent = main
  33.  
  34. Give1millioncash.Name = "Give 1 million cash"
  35. Give1millioncash.Parent = main
  36. Give1millioncash.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. Give1millioncash.BackgroundTransparency = 1.000
  38. Give1millioncash.BorderSizePixel = 0
  39. Give1millioncash.Position = UDim2.new(0, 0, 0.166666672, 0)
  40. Give1millioncash.Size = UDim2.new(0, 162, 0, 40)
  41. Give1millioncash.Font = Enum.Font.SourceSans
  42. Give1millioncash.Text = "Give 1 million cash"
  43. Give1millioncash.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. Give1millioncash.TextScaled = true
  45. Give1millioncash.TextSize = 35.000
  46. Give1millioncash.TextWrapped = true
  47.  
  48. Give1millioncashButton.Name = "Give 1 million cashButton"
  49. Give1millioncashButton.Parent = main
  50. Give1millioncashButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  51. Give1millioncashButton.BorderSizePixel = 0
  52. Give1millioncashButton.Position = UDim2.new(0.77477479, 0, 0.166666672, 0)
  53. Give1millioncashButton.Size = UDim2.new(0, 30, 0, 30)
  54. Give1millioncashButton.Font = Enum.Font.SourceSans
  55. Give1millioncashButton.Text = ""
  56. Give1millioncashButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  57. Give1millioncashButton.TextSize = 14.000
  58. Give1millioncashButton.MouseButton1Down:connect(function()
  59. if PrintTestButton.BackgroundColor3 == Color3.fromRGB(0, 255, 0) then do
  60. game.Players.Trailis_Fantom.leaderstats.Cash.Value = 1000000
  61. end
  62. end
  63. end)
  64.  
  65. UICorner_2.Parent = Give1millioncashButton
  66.  
  67. FlyButton.Name = "FlyButton"
  68. FlyButton.Parent = main
  69. FlyButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  70. FlyButton.BorderSizePixel = 0
  71. FlyButton.Position = UDim2.new(0.77477479, 0, 0.322916687, 0)
  72. FlyButton.Size = UDim2.new(0, 30, 0, 30)
  73. FlyButton.Font = Enum.Font.SourceSans
  74. FlyButton.Text = ""
  75. FlyButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. FlyButton.TextSize = 14.000
  77. FlyButton.MouseButton1Down:connect(function()
  78. if FlyButton.BackgroundColor3 == Color3.fromRGB(0, 255, 0) then do
  79. repeat wait()
  80. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  81. local mouse = game.Players.LocalPlayer:GetMouse()
  82. repeat wait() until mouse
  83. local plr = game.Players.LocalPlayer
  84. local torso = plr.Character.Torso
  85. local flying = true
  86. local deb = true
  87. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  88. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  89. local maxspeed = 50
  90. local speed = 0
  91.  
  92. function Fly()
  93. local bg = Instance.new("BodyGyro", torso)
  94. bg.P = 9e4
  95. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  96. bg.cframe = torso.CFrame
  97. local bv = Instance.new("BodyVelocity", torso)
  98. bv.velocity = Vector3.new(0,0.1,0)
  99. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  100. repeat wait()
  101. plr.Character.Humanoid.PlatformStand = true
  102. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  103. speed = speed+.5+(speed/maxspeed)
  104. if speed > maxspeed then
  105. speed = maxspeed
  106. end
  107. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  108. speed = speed-1
  109. if speed < 0 then
  110. speed = 0
  111. end
  112. end
  113. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  114. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  115. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  116. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  117. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  118. else
  119. bv.velocity = Vector3.new(0,0.1,0)
  120. end
  121. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  122. until not flying
  123. ctrl = {f = 0, b = 0, l = 0, r = 0}
  124. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  125. speed = 0
  126. bg:Destroy()
  127. bv:Destroy()
  128. plr.Character.Humanoid.PlatformStand = false
  129. end
  130. mouse.KeyDown:connect(function(key)
  131. if key:lower() == "e" then
  132. if flying then flying = false
  133. else
  134. flying = true
  135. Fly()
  136. end
  137. elseif key:lower() == "w" then
  138. ctrl.f = 1
  139. elseif key:lower() == "s" then
  140. ctrl.b = -1
  141. elseif key:lower() == "a" then
  142. ctrl.l = -1
  143. elseif key:lower() == "d" then
  144. ctrl.r = 1
  145. end
  146. end)
  147. mouse.KeyUp:connect(function(key)
  148. if key:lower() == "w" then
  149. ctrl.f = 0
  150. elseif key:lower() == "s" then
  151. ctrl.b = 0
  152. elseif key:lower() == "a" then
  153. ctrl.l = 0
  154. elseif key:lower() == "d" then
  155. ctrl.r = 0
  156. end
  157. end)
  158. Fly()
  159. end
  160. end
  161. end)
  162.  
  163. UICorner_3.Parent = FlyButton
  164.  
  165. Fly.Name = "Fly"
  166. Fly.Parent = main
  167. Fly.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  168. Fly.BackgroundTransparency = 1.000
  169. Fly.BorderSizePixel = 0
  170. Fly.Position = UDim2.new(0, 0, 0.305555582, 0)
  171. Fly.Size = UDim2.new(0, 117, 0, 40)
  172. Fly.Font = Enum.Font.SourceSans
  173. Fly.Text = "Fly"
  174. Fly.TextColor3 = Color3.fromRGB(255, 255, 255)
  175. Fly.TextScaled = true
  176. Fly.TextSize = 35.000
  177. Fly.TextWrapped = true
  178.  
  179. UnlimitedhealthButton.Name = "Unlimited healthButton"
  180. UnlimitedhealthButton.Parent = main
  181. UnlimitedhealthButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  182. UnlimitedhealthButton.BorderSizePixel = 0
  183. UnlimitedhealthButton.Position = UDim2.new(0.77477479, 0, 0.461805582, 0)
  184. UnlimitedhealthButton.Size = UDim2.new(0, 30, 0, 30)
  185. UnlimitedhealthButton.Font = Enum.Font.SourceSans
  186. UnlimitedhealthButton.Text = ""
  187. UnlimitedhealthButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  188. UnlimitedhealthButton.TextSize = 35.000
  189. UnlimitedhealthButton.MouseButton1Down:connect(function()
  190. if UnlimitedhealthButton.BackgroundColor3 == Color3.fromRGB(0, 255, 0) then do
  191. -- Best Infinite Health Script (Made From Original)
  192. -- If you get damaged, you will get back to 100 health in 0 seconds.
  193. -- It is also used for games, Recommended Not For Games.
  194. -- add me if you have bugs or it is not working: 05wo
  195. -- I also Make Exploits.
  196. -- Use it carefully.
  197.  
  198. local REGEN_RATE = 100/100 -- If you change these settings it will broke.
  199. local REGEN_STEP = 0 -- Don't Change These Settings!
  200. -- DON'T CHANGE!
  201. --------------------------------------------------------------------------------
  202.  
  203. local Character = script.Parent
  204. local Humanoid = Character:WaitForChild'Humanoid'
  205.  
  206. --------------------------------------------------------------------------------
  207.  
  208. while true do
  209. while Humanoid.Health < Humanoid.MaxHealth do
  210. local dt = wait(REGEN_STEP)
  211. local dh = dt*REGEN_RATE*Humanoid.MaxHealth
  212. Humanoid.Health = math.min(Humanoid.Health + dh, Humanoid.MaxHealth)
  213. end
  214. Humanoid.HealthChanged:Wait()
  215. end
  216. -- Lmao
  217. end
  218. end
  219. end)
  220.  
  221. UICorner_4.Parent = UnlimitedhealthButton
  222.  
  223. Unlimitedhealth.Name = "Unlimited health"
  224. Unlimitedhealth.Parent = main
  225. Unlimitedhealth.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  226. Unlimitedhealth.BackgroundTransparency = 1.000
  227. Unlimitedhealth.BorderSizePixel = 0
  228. Unlimitedhealth.Position = UDim2.new(0, 0, 0.440972269, 0)
  229. Unlimitedhealth.Size = UDim2.new(0, 117, 0, 40)
  230. Unlimitedhealth.Font = Enum.Font.SourceSans
  231. Unlimitedhealth.Text = "Unlimited health"
  232. Unlimitedhealth.TextColor3 = Color3.fromRGB(255, 255, 255)
  233. Unlimitedhealth.TextScaled = true
  234. Unlimitedhealth.TextSize = 35.000
  235. Unlimitedhealth.TextWrapped = true
  236.  
  237. PrintTest.Name = "Print Test"
  238. PrintTest.Parent = main
  239. PrintTest.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  240. PrintTest.BackgroundTransparency = 1.000
  241. PrintTest.BorderSizePixel = 0
  242. PrintTest.Position = UDim2.new(0, 0, 0.579861164, 0)
  243. PrintTest.Size = UDim2.new(0, 117, 0, 40)
  244. PrintTest.Font = Enum.Font.SourceSans
  245. PrintTest.Text = "Print Text \"Test\""
  246. PrintTest.TextColor3 = Color3.fromRGB(255, 255, 255)
  247. PrintTest.TextScaled = true
  248. PrintTest.TextSize = 35.000
  249. PrintTest.TextWrapped = true
  250.  
  251. PrintTestButton.Name = "Print TestButton"
  252. PrintTestButton.Parent = main
  253. PrintTestButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  254. PrintTestButton.BorderSizePixel = 0
  255. PrintTestButton.Position = UDim2.new(0.77477479, 0, 0.600694478, 0)
  256. PrintTestButton.Size = UDim2.new(0, 30, 0, 30)
  257. PrintTestButton.Font = Enum.Font.SourceSans
  258. PrintTestButton.Text = ""
  259. PrintTestButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  260. PrintTestButton.TextSize = 35.000
  261. PrintTestButton.MouseButton1Down:connect(function()
  262. if PrintTestButton.BackgroundColor3 == Color3.fromRGB(0, 255, 0) then do
  263. print("Test")
  264. while true do
  265. wait()--make sure you have this. Without it. It will crash the Server/Client.
  266. end
  267. end
  268. end
  269. end)
  270.  
  271. UICorner_5.Parent = PrintTestButton
  272.  
  273. Label.Name = "Label"
  274. Label.Parent = main
  275. Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  276. Label.BackgroundTransparency = 1.000
  277. Label.BorderSizePixel = 0
  278. Label.Position = UDim2.new(0.135135129, 0, 0, 0)
  279. Label.Size = UDim2.new(0, 162, 0, 40)
  280. Label.Font = Enum.Font.SourceSans
  281. Label.Text = "Da Hood gui"
  282. Label.TextColor3 = Color3.fromRGB(255, 255, 255)
  283. Label.TextScaled = true
  284. Label.TextSize = 50.000
  285. Label.TextWrapped = true
  286.  
  287. -- Scripts:
  288.  
  289. local function JKAIRY_fake_script() -- Give1millioncashButton.LocalScript
  290. local script = Instance.new('LocalScript', Give1millioncashButton)
  291.  
  292. button = script.Parent
  293. blue = button.BackgroundColor3
  294. red = Color3.new(1,0,0)
  295. green = Color3.new(0,1,0)
  296. print("Found colors and button")
  297.  
  298. script.Parent.MouseButton1Click:connect(function()
  299. if button.BackgroundColor3 == Color3.fromRGB(255, 0, 0) then
  300. button.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  301. elseif button.BackgroundColor3 == red then
  302. button.BackgroundColor3 = green
  303. else
  304. button.BackgroundColor3 = blue
  305. end
  306. end)
  307. end
  308. coroutine.wrap(JKAIRY_fake_script)()
  309. local function DTBTOVB_fake_script() -- FlyButton.LocalScript
  310. local script = Instance.new('LocalScript', FlyButton)
  311.  
  312. button = script.Parent
  313. blue = button.BackgroundColor3
  314. red = Color3.new(1,0,0)
  315. green = Color3.new(0,1,0)
  316. print("Found colors and button")
  317.  
  318. script.Parent.MouseButton1Click:connect(function()
  319. if button.BackgroundColor3 == Color3.fromRGB(255, 0, 0) then
  320. button.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  321. elseif button.BackgroundColor3 == red then
  322. button.BackgroundColor3 = green
  323. else
  324. button.BackgroundColor3 = blue
  325. end
  326. end)
  327. end
  328. coroutine.wrap(DTBTOVB_fake_script)()
  329. local function WGOU_fake_script() -- UnlimitedhealthButton.LocalScript
  330. local script = Instance.new('LocalScript', UnlimitedhealthButton)
  331.  
  332. button = script.Parent
  333. blue = button.BackgroundColor3
  334. red = Color3.new(1,0,0)
  335. green = Color3.new(0,1,0)
  336. print("Found colors and button")
  337.  
  338. script.Parent.MouseButton1Click:connect(function()
  339. if button.BackgroundColor3 == Color3.fromRGB(255, 0, 0) then
  340. button.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  341. elseif button.BackgroundColor3 == red then
  342. button.BackgroundColor3 = green
  343. else
  344. button.BackgroundColor3 = blue
  345. end
  346. end)
  347. end
  348. coroutine.wrap(WGOU_fake_script)()
  349. local function NJXF_fake_script() -- PrintTestButton.LocalScript
  350. local script = Instance.new('LocalScript', PrintTestButton)
  351.  
  352. button = script.Parent
  353. blue = button.BackgroundColor3
  354. red = Color3.new(1,0,0)
  355. green = Color3.new(0,1,0)
  356. print("Found colors and button")
  357.  
  358. script.Parent.MouseButton1Click:connect(function()
  359. if button.BackgroundColor3 == Color3.fromRGB(255, 0, 0) then
  360. button.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  361. elseif button.BackgroundColor3 == red then
  362. button.BackgroundColor3 = green
  363. else
  364. button.BackgroundColor3 = blue
  365. end
  366. end)
  367. end
  368. coroutine.wrap(NJXF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement