Advertisement
DownfallScripts

Hoods Downfall Gui

Jun 9th, 2023
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 55.63 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "hoods downfall",
  5. LoadingTitle = "hoods downfall",
  6. LoadingSubtitle = "by downfall scripts",
  7. ConfigurationSaving = {
  8. Enabled = false,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "hoodsdownfallscript"
  11. },
  12. Discord = {https://[Log in to view URL]
  13. Enabled = true,
  14. Invite = "https://[Log in to view URL]", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = true, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "hoodsdownfallscript / Key",
  20. Subtitle = "link in Discord",
  21. Note = "join server in misc tab",
  22. FileName = "hoodsdownfallscriptkey", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = {"https://[Log in to view URL]"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26. }
  27. })
  28.  
  29. local MainTab = Window:CreateTab("🏠Home", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("MainSection")
  31.  
  32. Rayfield:Notify({
  33. Title = "downfall executed",
  34. Content = "Remember to join the Discord",
  35. Duration = 5,
  36. Image = 4483362458,
  37. Actions = { -- Notification Buttons
  38. Ignore = {
  39. Name = "Okay!",
  40. Callback = function()
  41. print("The user tapped Okay!")
  42. end
  43. },
  44. },
  45. })
  46.  
  47. local HttpService = game:GetService("HttpService")
  48. local TeleportService = game:GetService("TeleportService")
  49.  
  50. local PlaceId = 2788229376
  51.  
  52. local Response = syn.request({
  53. Url = string.format("https://[Log in to view URL]", tostring(PlaceId)),
  54. Method = "GET"
  55. })
  56.  
  57. local GetRandomJobId = function()
  58. local JSONDecode = HttpService:JSONDecode(Response.Body)
  59. return JSONDecode.data[math.random(1, table.getn(JSONDecode.data))].id
  60. end
  61.  
  62. TeleportService:TeleportToPlaceInstance(PlaceId, GetRandomJobId())
  63.  
  64. local Button = MainTab:CreateButton({
  65. Name = "fly",
  66. Callback = function()
  67. repeat wait()
  68. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  69. local mouse = game.Players.LocalPlayer:GetMouse()
  70. repeat wait() until mouse
  71. local plr = game.Players.LocalPlayer
  72. local torso = plr.Character.HumanoidRootPart
  73. local flying = true
  74. local deb = true
  75. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  76. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  77. local maxspeed = 50
  78. local speed = 0
  79.  
  80. function Fly()
  81. local bg = Instance.new("BodyGyro", torso)
  82. bg.P = 9e4
  83. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  84. bg.cframe = torso.CFrame
  85. local bv = Instance.new("BodyVelocity", torso)
  86. bv.velocity = Vector3.new(0,0.1,0)
  87. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  88. repeat wait()
  89. plr.Character.Humanoid.PlatformStand = true
  90. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  91. speed = speed+.5+(speed/maxspeed)
  92. if speed > maxspeed then
  93. speed = maxspeed
  94. end
  95. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  96. speed = speed-1
  97. if speed < 0 then
  98. speed = 0
  99. end
  100. end
  101. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  102. 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
  103. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  104. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  105. 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
  106. else
  107. bv.velocity = Vector3.new(0,0.1,0)
  108. end
  109. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  110. until not flying
  111. ctrl = {f = 0, b = 0, l = 0, r = 0}
  112. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  113. speed = 0
  114. bg:Destroy()
  115. bv:Destroy()
  116. plr.Character.Humanoid.PlatformStand = false
  117. end
  118. mouse.KeyDown:connect(function(key)
  119. if key:lower() == "e" then
  120. if flying then flying = false
  121. else
  122. flying = true
  123. Fly()
  124. end
  125. elseif key:lower() == "w" then
  126. ctrl.f = 1
  127. elseif key:lower() == "s" then
  128. ctrl.b = -1
  129. elseif key:lower() == "a" then
  130. ctrl.l = -1
  131. elseif key:lower() == "d" then
  132. ctrl.r = 1
  133. end
  134. end)
  135. mouse.KeyUp:connect(function(key)
  136. if key:lower() == "w" then
  137. ctrl.f = 0
  138. elseif key:lower() == "s" then
  139. ctrl.b = 0
  140. elseif key:lower() == "a" then
  141. ctrl.l = 0
  142. elseif key:lower() == "d" then
  143. ctrl.r = 0
  144. end
  145. end)
  146. Fly()
  147. end,
  148. })
  149.  
  150. local Slider = MainTab:CreateSlider({
  151. Name = "WalkSpeed",
  152. Range = {0, 300},
  153. Increment = 1,
  154. Suffix = "speed",
  155. CurrentValue = 16,
  156. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  157. Callback = function(Value)
  158. game.players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  159. end,
  160. })
  161.  
  162. local TeleportTab = Window:CreateTab("Teleports", nil) -- Title, Image
  163. local Section = TeleportTab:CreateSection("Teleports")
  164.  
  165. local Button = TeleportTab:CreateButton({
  166. Name = "Bank",
  167. Callback = function()
  168. Bank.Name = "Bank"
  169. Bank.Parent = Frame
  170. Bank.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  171. Bank.Position = UDim2.new(0.0164835174, 0, 0.0740740746, 0)
  172. Bank.Size = UDim2.new(0, 164, 0, 58)
  173. Bank.Text = "Bank"
  174. Bank.TextColor3 = Color3.fromRGB(0, 0, 0)
  175. Bank.TextScaled = true
  176. Bank.TextSize = 14.000
  177. Bank.TextWrapped = true
  178. Bank.MouseButton1Down:connect(function()
  179. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-436.293091, 22.9756889, -284.663605)
  180. end)
  181. end,
  182. })
  183.  
  184. local Button = teleportTab:CreateButton({
  185. Name = "food",
  186. Callback = function()
  187. FoodStore.Name = "Food Store"
  188. FoodStore.Parent = Frame
  189. FoodStore.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  190. FoodStore.Position = UDim2.new(0.516483545, 0, 0.0740740746, 0)
  191. FoodStore.Size = UDim2.new(0, 164, 0, 58)
  192. FoodStore.Text = "Food Store Downhills"
  193. FoodStore.TextColor3 = Color3.fromRGB(0, 0, 0)
  194. FoodStore.TextScaled = true
  195. FoodStore.TextSize = 14.000
  196. FoodStore.TextWrapped = true
  197. FoodStore.MouseButton1Down:connect(function()
  198. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(299.333008, 49.2826653, -614.396179)
  199. end)
  200. end,
  201. })
  202.  
  203. local Button = TeleportTab:CreateButton({
  204. Name = "food2",
  205. Callback = function()
  206. FoodStore2.Name = "Food Store 2"
  207. FoodStore2.Parent = Frame
  208. FoodStore2.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  209. FoodStore2.Position = UDim2.new(0.516483545, 0, 0.574712694, 0)
  210. FoodStore2.Size = UDim2.new(0, 164, 0, 58)
  211. FoodStore2.Text = "Food Store Uphills"
  212. FoodStore2.TextColor3 = Color3.fromRGB(0, 0, 0)
  213. FoodStore2.TextScaled = true
  214. FoodStore2.TextSize = 14.000
  215. FoodStore2.TextWrapped = true
  216. FoodStore2.MouseButton1Down:connect(function()
  217. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-336.987122, 23.6826477, -298.932709)
  218. end)
  219. end,
  220. })
  221.  
  222. local Button = TeleportTab:CreateButton({
  223. Name = "Gas station",
  224. Callback = function()
  225. GasStation.Name = "Gas Station"
  226. GasStation.Parent = Frame
  227. GasStation.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  228. GasStation.Position = UDim2.new(0.516483545, 0, 0.167305231, 0)
  229. GasStation.Size = UDim2.new(0, 164, 0, 58)
  230. GasStation.Text = "Gas Station"
  231. GasStation.TextColor3 = Color3.fromRGB(0, 0, 0)
  232. GasStation.TextScaled = true
  233. GasStation.TextSize = 14.000
  234. GasStation.TextWrapped = true
  235. GasStation.MouseButton1Down:connect(function()
  236. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(590.96167, 49.0000458, -259.772461)
  237. end)
  238. end,
  239. })
  240.  
  241. local Button = TeleportTab:CreateButton({
  242. Name = "Poclice Station",
  243. Callback = function()
  244. Policestation.Name = "Police station"
  245. Policestation.Parent = Frame
  246. Policestation.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  247. Policestation.Position = UDim2.new(0.516483545, 0, 0.268199205, 0)
  248. Policestation.Size = UDim2.new(0, 164, 0, 58)
  249. Policestation.Text = "Police Station"
  250. Policestation.TextColor3 = Color3.fromRGB(0, 0, 0)
  251. Policestation.TextScaled = true
  252. Policestation.TextSize = 16.000
  253. Policestation.TextWrapped = true
  254. Policestation.MouseButton1Down:connect(function()
  255. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-267.225189, 21.7999573, -113.573311)
  256. end)
  257. end,
  258. })
  259.  
  260. local Button = TeleportTab:CreateButton({
  261. Name = "Da Casino",
  262. Callback = function()
  263. DaCasino.Name = "Da Casino"
  264. DaCasino.Parent = Frame
  265. DaCasino.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  266. DaCasino.Position = UDim2.new(0.0164835174, 0, 0.371647537, 0)
  267. DaCasino.Size = UDim2.new(0, 164, 0, 58)
  268. DaCasino.Text = "Da Casino"
  269. DaCasino.TextColor3 = Color3.fromRGB(0, 0, 0)
  270. DaCasino.TextScaled = true
  271. DaCasino.TextSize = 14.000
  272. DaCasino.TextWrapped = true
  273. DaCasino.MouseButton1Down:connect(function()
  274. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-887.471619, 21.75, -124.488388)
  275. end)
  276. end,
  277. })
  278.  
  279. local Button = TeleportTab:CreateButton({
  280. Name = "Basketball Court",
  281. Callback = function()
  282. Basketball.Name = "Basketball"
  283. Basketball.Parent = Frame
  284. Basketball.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  285. Basketball.Position = UDim2.new(0.516483545, 0, 0.472541511, 0)
  286. Basketball.Size = UDim2.new(0, 164, 0, 58)
  287. Basketball.Text = "Basketball"
  288. Basketball.TextColor3 = Color3.fromRGB(0, 0, 0)
  289. Basketball.TextScaled = true
  290. Basketball.TextSize = 14.000
  291. Basketball.TextWrapped = true
  292. Basketball.MouseButton1Down:connect(function()
  293. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-931.971558, 22.0998211, -481.859589)
  294. end)
  295. end,
  296. })
  297.  
  298. local Button = TeleportTab:CreateButton({
  299. Name = "Downhill Gunz",
  300. Callback = function()
  301. ThyronesGunstore1.Name = "Thyrones Gunstore 1#"
  302. ThyronesGunstore1.Parent = Frame
  303. ThyronesGunstore1.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  304. ThyronesGunstore1.Position = UDim2.new(0.0164835174, 0, 0.574712694, 0)
  305. ThyronesGunstore1.Size = UDim2.new(0, 164, 0, 58)
  306. ThyronesGunstore1.Text = "Thyrones Gunstore #1"
  307. ThyronesGunstore1.TextColor3 = Color3.fromRGB(0, 0, 0)
  308. ThyronesGunstore1.TextScaled = true
  309. ThyronesGunstore1.TextSize = 14.000
  310. ThyronesGunstore1.TextWrapped = true
  311. ThyronesGunstore1.MouseButton1Down:connect(function()
  312. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(482.312347, 48.0705032, -624.330505)
  313. end)
  314. end,
  315. })
  316.  
  317. local Button = TeleportTab:CreateButton({
  318. Name = "Uphill Gunz",
  319. Callback = function()
  320. ThyronesGunstore2.Name = "Thyrones Gunstore 2#"
  321. ThyronesGunstore2.Parent = Frame
  322. ThyronesGunstore2.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  323. ThyronesGunstore2.Position = UDim2.new(0.516483545, 0, 0.678160906, 0)
  324. ThyronesGunstore2.Size = UDim2.new(0, 164, 0, 58)
  325. ThyronesGunstore2.Text = "Thyrones Gunstore 2#"
  326. ThyronesGunstore2.TextColor3 = Color3.fromRGB(0, 0, 0)
  327. ThyronesGunstore2.TextScaled = true
  328. ThyronesGunstore2.TextSize = 14.000
  329. ThyronesGunstore2.TextWrapped = true
  330. ThyronesGunstore2.MouseButton1Down:connect(function()
  331. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-582.699829, 8.31478119, -736.593994)
  332. end)
  333. end,
  334. })
  335.  
  336. local Button = TeleportTab:CreateButton({
  337. Name = "UFO",
  338. Callback = function()
  339. UFO.Name = "UFO"
  340. UFO.Parent = Frame
  341. UFO.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  342. UFO.Position = UDim2.new(0.0164835174, 0, 0.678160906, 0)
  343. UFO.Size = UDim2.new(0, 164, 0, 58)
  344. UFO.Text = "UFO"
  345. UFO.TextColor3 = Color3.fromRGB(0, 0, 0)
  346. UFO.TextScaled = true
  347. UFO.TextSize = 14.000
  348. UFO.TextWrapped = true
  349. UFO.MouseButton1Down:connect(function()
  350. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(66.5427094, 139, -697.639526)
  351. end)
  352. end,
  353. })
  354.  
  355. local Button = TeleportTab:CreateButton({
  356. Name = "Admin Base",
  357. Callback = function()
  358. LavaLairStore.Name = "Lava Lair Store"
  359. LavaLairStore.Parent = Frame
  360. LavaLairStore.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  361. LavaLairStore.Position = UDim2.new(0.516483545, 0, 0.876117468, 0)
  362. LavaLairStore.Size = UDim2.new(0, 164, 0, 58)
  363. LavaLairStore.Text = "Lava Lair Store"
  364. LavaLairStore.TextColor3 = Color3.fromRGB(0, 0, 0)
  365. LavaLairStore.TextScaled = true
  366. LavaLairStore.TextSize = 14.000
  367. LavaLairStore.TextWrapped = true
  368. LavaLairStore.MouseButton1Down:connect(function()
  369. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-787.381592, -39.6492004, -933.489075)
  370. end)
  371. end,
  372. })
  373.  
  374. local Button = TeleportTab:CreateButton({
  375. Name = "Gym",
  376. Callback = function()
  377. Gym.Name = "Gym"
  378. Gym.Parent = Frame
  379. Gym.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  380. Gym.Position = UDim2.new(0.0164835453, 0, 0.876117468, 0)
  381. Gym.Size = UDim2.new(0, 164, 0, 58)
  382. Gym.Text = "Gym"
  383. Gym.TextColor3 = Color3.fromRGB(0, 0, 0)
  384. Gym.TextScaled = true
  385. Gym.TextSize = 14.000
  386. Gym.TextWrapped = true
  387. Gym.MouseButton1Down:connect(function()
  388. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-77.2380142, 22.7002907, -638.656982)
  389. end)
  390. end,
  391. })
  392.  
  393. local Button = TeleportTab:CreateButton({
  394. Name = "Sewer",
  395. Callback = function()
  396. sewer.Name = "sewer"
  397. sewer.Parent = Frame_2
  398. sewer.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  399. sewer.Position = UDim2.new(0.531694353, 0, 0.421621978, 0)
  400. sewer.Size = UDim2.new(0, 158, 0, 57)
  401. sewer.Font = Enum.Font.SourceSans
  402. sewer.Text = "Sewer"
  403. sewer.TextColor3 = Color3.fromRGB(0, 0, 0)
  404. sewer.TextScaled = true
  405. sewer.TextSize = 14.000
  406. sewer.TextWrapped = true
  407. sewer.MouseButton1Down:connect(function()
  408. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(103.128914, -26.7500305, -274.729767)
  409. end)
  410. end,
  411. })
  412.  
  413. local TogglesTab = Window:CreateTab("Toggles", nil)
  414. local Section = TogglesTab:CreateSection("Toggles")
  415.  
  416. local Toggle = TogglesTab:CreateToggle({
  417. Name = "Esp",
  418. CurrentValue = false,
  419. Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  420. Callback = function(Value)
  421. local custom_theme = {} --soon
  422.  
  423. local function CreateInstance(cls,props)
  424. local inst = Instance.new(cls)
  425. for i,v in pairs(props) do
  426. inst[i] = v
  427. end
  428. return inst
  429. end
  430.  
  431. local age1 = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,Name='age1', Parent=game.CoreGui})
  432. local p_visuals = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 50, 0, 60),Rotation=0,Selectable=false,Size=UDim2.new(0, 200, 0, 254),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'p_visuals',Parent = age1})
  433. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 1), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.LayoutOrder, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = p_visuals })
  434. local title1 = CreateInstance('TextLabel',{Font=Enum.Font.GothamBlack,FontSize=Enum.FontSize.Size18,Text='Player visuals',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=18,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 24),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title1',Parent = p_visuals})
  435. local b_b = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Bounding box',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_b',Parent = p_visuals})
  436. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_b})
  437. local b_f = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Fill alpha',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_f',Parent = p_visuals})
  438. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_f})
  439. local b_rt = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Render team',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_rt',Parent = p_visuals})
  440. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_rt})
  441. local b_tc = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Use TeamColor',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_tc',Parent = p_visuals})
  442. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_tc})
  443. local b_sn = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Show name',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_sn',Parent = p_visuals})
  444. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_sn})
  445. local b_sd = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Show distance',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_sd',Parent = p_visuals})
  446. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_sd})
  447. local b_sh = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Show health',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_sh',Parent = p_visuals})
  448. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_sh})
  449. local b_ht = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Health type',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_ht',Parent = p_visuals})
  450. local v = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Text',TextColor3=Color3.new(0, 1, 1),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_ht})
  451. local b_f_t = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Fill transparency',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_f_t',Parent = p_visuals})
  452. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='1',TextColor3=Color3.new(0, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_f_t})
  453. local title1_2 = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='ESP',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=18,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title1_2',Parent = p_visuals})
  454. local b_ct = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Team color',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_ct',Parent = p_visuals})
  455. local ct_b = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 0, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0, 0, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ct_b',Parent = b_ct})
  456. local ct_g = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 1, 0), PlaceholderText='', PlaceholderColor3=Color3.new(0, 1, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -29, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ct_g',Parent = b_ct})
  457. local ct_r = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(1, 0, 0), PlaceholderText='', PlaceholderColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -56, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ct_r',Parent = b_ct})
  458. local b_ce = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Enemy color',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_ce',Parent = p_visuals})
  459. local ce_b = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 0, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0, 0, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ce_b',Parent = b_ce})
  460. local ce_g = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 1, 0), PlaceholderText='', PlaceholderColor3=Color3.new(0, 1, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -29, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ce_g',Parent = b_ce})
  461. local ce_r = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(1, 0, 0), PlaceholderText='', PlaceholderColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -56, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ce_r',Parent = b_ce})
  462. local watermark = CreateInstance('TextLabel',{Font=Enum.Font.Code,FontSize=Enum.FontSize.Size14,Text='lamehaxx v0.01',TextColor3=Color3.new(0, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Top,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, -34),Rotation=0,Selectable=false,Size=UDim2.new(0, 200, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=20,Name='watermark',Parent = age1})
  463. local watermark1 = CreateInstance('TextLabel',{Font=Enum.Font.Code,FontSize=Enum.FontSize.Size14,Text='lamehaxx v0.01',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Top,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, -2, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 200, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=20,Name='watermark1',Parent = watermark})
  464. p_visuals.Draggable = true
  465.  
  466. title1.LayoutOrder = 0 title1_2.LayoutOrder = 1
  467. b_b.LayoutOrder = 1 b_f.LayoutOrder = 2 b_f_t.LayoutOrder = 3 b_sd.LayoutOrder = 4 b_sn.LayoutOrder = 5 b_sh.LayoutOrder = 6 b_ht.LayoutOrder = 7 b_rt.LayoutOrder = 8 b_tc.LayoutOrder = 9 b_ct.LayoutOrder = 10 b_ce.LayoutOrder = 11
  468.  
  469. local localplayer = game:GetService"Players".LocalPlayer
  470. local uis = game:GetService"UserInputService"
  471.  
  472. local cheats = {
  473. b_b = false;
  474. b_f = false;
  475. b_f_t = 1;
  476. b_sd = false;
  477. b_sn = false;
  478. b_sh = false;
  479. b_ht = "Text";
  480. b_rt = false;
  481. b_tc = false;
  482. }
  483.  
  484. local cheatsf = Instance.new("Folder", game.CoreGui) cheatsf.Name = "cheats"
  485. local espf = Instance.new("Folder", cheatsf) espf.Name = "esp"
  486.  
  487. function addEsp(player)
  488. local bbg = Instance.new("BillboardGui", espf)
  489. bbg.Name = player.Name
  490. bbg.AlwaysOnTop = true
  491. bbg.Size = UDim2.new(4,0,5.4,0)
  492. bbg.ClipsDescendants = false
  493.  
  494. local outlines = Instance.new("Frame", bbg)
  495. outlines.Size = UDim2.new(1,0,1,0)
  496. outlines.BorderSizePixel = 0
  497. outlines.BackgroundTransparency = 1
  498. local left = Instance.new("Frame", outlines)
  499. left.BorderSizePixel = 0
  500. left.Size = UDim2.new(0,1,1,0)
  501. local right = left:Clone()
  502. right.Parent = outlines
  503. right.Size = UDim2.new(0,-1,1,0)
  504. right.Position = UDim2.new(1,0,0,0)
  505. local up = left:Clone()
  506. up.Parent = outlines
  507. up.Size = UDim2.new(1,0,0,1)
  508. local down = left:Clone()
  509. down.Parent = outlines
  510. down.Size = UDim2.new(1,0,0,-1)
  511. down.Position = UDim2.new(0,0,1,0)
  512.  
  513. local info = Instance.new("BillboardGui", bbg)
  514. info.Name = "info"
  515. info.Size = UDim2.new(3,0,0,54)
  516. info.StudsOffset = Vector3.new(3.6,-3,0)
  517. info.AlwaysOnTop = true
  518. info.ClipsDescendants = false
  519. local namelabel = Instance.new("TextLabel", info)
  520. namelabel.Name = "namelabel"
  521. namelabel.BackgroundTransparency = 1
  522. namelabel.TextStrokeTransparency = 0
  523. namelabel.TextXAlignment = Enum.TextXAlignment.Left
  524. namelabel.Size = UDim2.new(0,100,0,18)
  525. namelabel.Position = UDim2.new(0,0,0,0)
  526. namelabel.Text = player.Name
  527. local distancel = Instance.new("TextLabel", info)
  528. distancel.Name = "distancelabel"
  529. distancel.BackgroundTransparency = 1
  530. distancel.TextStrokeTransparency = 0
  531. distancel.TextXAlignment = Enum.TextXAlignment.Left
  532. distancel.Size = UDim2.new(0,100,0,18)
  533. distancel.Position = UDim2.new(0,0,0,18)
  534. local healthl = Instance.new("TextLabel", info)
  535. healthl.Name = "healthlabel"
  536. healthl.BackgroundTransparency = 1
  537. healthl.TextStrokeTransparency = 0
  538. healthl.TextXAlignment = Enum.TextXAlignment.Left
  539. healthl.Size = UDim2.new(0,100,0,18)
  540. healthl.Position = UDim2.new(0,0,0,36)
  541.  
  542. local uill = Instance.new("UIListLayout", info)
  543.  
  544. local forhealth = Instance.new("BillboardGui", bbg)
  545. forhealth.Name = "forhealth"
  546. forhealth.Size = UDim2.new(5,0,6,0)
  547. forhealth.AlwaysOnTop = true
  548. forhealth.ClipsDescendants = false
  549.  
  550. local healthbar = Instance.new("Frame", forhealth)
  551. healthbar.Name = "healthbar"
  552. healthbar.BackgroundColor3 = Color3.fromRGB(40,40,40)
  553. healthbar.BorderColor3 = Color3.fromRGB(0,0,0)
  554. healthbar.Size = UDim2.new(0.04,0,0.9,0)
  555. healthbar.Position = UDim2.new(0,0,0.05,0)
  556. local bar = Instance.new("Frame", healthbar)
  557. bar.Name = "bar"
  558. bar.BorderSizePixel = 0
  559. bar.BackgroundColor3 = Color3.fromRGB(94,255,69)
  560. bar.AnchorPoint = Vector2.new(0,1)
  561. bar.Position = UDim2.new(0,0,1,0)
  562. bar.Size = UDim2.new(1,0,1,0)
  563.  
  564. local co = coroutine.create(function()
  565. while wait(0.1) do
  566. if (player.Character and player.Character:FindFirstChild"HumanoidRootPart") then
  567. bbg.Adornee = player.Character.HumanoidRootPart
  568. info.Adornee = player.Character.HumanoidRootPart
  569. forhealth.Adornee = player.Character.HumanoidRootPart
  570.  
  571. if (player.Team ~= localplayer.Team) then
  572. bbg.Enabled = true
  573. info.Enabled = true
  574. forhealth.Enabled = true
  575. end
  576. if player.Character:FindFirstChild("ForceField") then
  577. outlines.BackgroundTransparency = 0.4
  578. left.BackgroundTransparency = 0.4
  579. right.BackgroundTransparency = 0.4
  580. up.BackgroundTransparency = 0.4
  581. down.BackgroundTransparency = 0.4
  582. healthl.TextTransparency = 0.4
  583. healthl.TextStrokeTransparency = 0.8
  584. distancel.TextTransparency = 0.4
  585. distancel.TextStrokeTransparency = 0.8
  586. namelabel.TextTransparency = 0.4
  587. namelabel.TextStrokeTransparency = 0.8
  588. bar.BackgroundTransparency = 0.4
  589. healthbar.BackgroundTransparency = 0.8
  590. else
  591. outlines.BackgroundTransparency = 0
  592. left.BackgroundTransparency = 0
  593. right.BackgroundTransparency = 0
  594. up.BackgroundTransparency = 0
  595. down.BackgroundTransparency = 0
  596. healthl.TextTransparency = 0
  597. healthl.TextStrokeTransparency = 0
  598. distancel.TextTransparency = 0
  599. distancel.TextStrokeTransparency = 0
  600. namelabel.TextTransparency = 0
  601. namelabel.TextStrokeTransparency = 0
  602. bar.BackgroundTransparency = 0
  603. healthbar.BackgroundTransparency = 0
  604. end
  605. if cheats.b_b == true then
  606. outlines.Visible = true
  607. else
  608. outlines.Visible = false
  609. end
  610. if cheats.b_f == true then
  611. if player.Character:FindFirstChild("ForceField") then
  612. outlines.BackgroundTransparency = 0.9
  613. else
  614. outlines.BackgroundTransparency = cheats.b_f_t
  615. end
  616. else
  617. outlines.BackgroundTransparency = 1
  618. end
  619. if cheats.b_sh == true then
  620. if (player.Character:FindFirstChild"Humanoid") then
  621. healthl.Text = "Health: "..math.floor(player.Character:FindFirstChild"Humanoid".Health)
  622. healthbar.bar.Size = UDim2.new(1,0,player.Character:FindFirstChild"Humanoid".Health/player.Character:FindFirstChild"Humanoid".MaxHealth,0)
  623. end
  624. if cheats.b_ht == "Text" then
  625. healthbar.Visible = false
  626. healthl.Visible = true
  627. end
  628. if cheats.b_ht == "Bar" then
  629. healthl.Visible = false
  630. healthbar.Visible = true
  631. end
  632. if cheats.b_ht == "Both" then
  633. healthl.Visible = true
  634. healthbar.Visible = true
  635. end
  636. else
  637. healthl.Visible = false
  638. healthbar.Visible = false
  639. end
  640. if cheats.b_sn then
  641. namelabel.Visible = true
  642. else
  643. namelabel.Visible = false
  644. end
  645. if cheats.b_sd == true then
  646. distancel.Visible = true
  647. if (localplayer.Character and localplayer.Character:FindFirstChild"HumanoidRootPart") then
  648. distancel.Text = "Distance: "..math.floor(0.5+(localplayer.Character:FindFirstChild"HumanoidRootPart".Position - player.Character:FindFirstChild"HumanoidRootPart".Position).magnitude)
  649. end
  650. else
  651. distancel.Visible = false
  652. end
  653. if cheats.b_rt == true then
  654. if (player.Team == localplayer.Team) then
  655. bbg.Enabled = true
  656. info.Enabled = true
  657. forhealth.Enabled = true
  658. end
  659. else
  660. if (player.Team == localplayer.Team) then
  661. bbg.Enabled = false
  662. info.Enabled = false
  663. forhealth.Enabled = false
  664. end
  665. end
  666. if cheats.b_tc == true then
  667. outlines.BackgroundColor3 = player.TeamColor.Color
  668. left.BackgroundColor3 = player.TeamColor.Color
  669. right.BackgroundColor3 = player.TeamColor.Color
  670. up.BackgroundColor3 = player.TeamColor.Color
  671. down.BackgroundColor3 = player.TeamColor.Color
  672. healthl.TextColor3 = player.TeamColor.Color
  673. distancel.TextColor3 = player.TeamColor.Color
  674. namelabel.TextColor3 = player.TeamColor.Color
  675. else
  676. if (player.Team == localplayer.Team) then
  677. outlines.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  678. left.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  679. right.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  680. up.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  681. down.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  682. healthl.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  683. distancel.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  684. namelabel.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  685. else
  686. outlines.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  687. left.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  688. right.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  689. up.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  690. down.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  691. healthl.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  692. distancel.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  693. namelabel.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  694. end
  695. end
  696. end
  697. if not (game:GetService"Players":FindFirstChild(player.Name)) then
  698. print(player.Name.." has left. Clearing esp.")
  699. espf:FindFirstChild(player.Name):Destroy()
  700. coroutine.yield()
  701. end
  702. end
  703. end)
  704. coroutine.resume(co)
  705. end
  706.  
  707. --main
  708. do
  709. wait(2)
  710. --menu buttons
  711. for _,button in pairs(age1:GetDescendants()) do
  712. if button:IsA"TextButton" then
  713. button.MouseButton1Click:connect(function()
  714. if button.Name == "b_f_t" then
  715. if cheats.b_f_t >= 0 then
  716. cheats.b_f_t = cheats.b_f_t+0.1
  717. if cheats.b_f_t > 1 then
  718. cheats.b_f_t = 0
  719. end
  720. end
  721. button.v.Text = cheats.b_f_t
  722. elseif button.Name == "b_ht" then
  723. if cheats.b_ht == "Text" then
  724. cheats.b_ht = "Bar"
  725. elseif cheats.b_ht == "Bar" then
  726. cheats.b_ht = "Both"
  727. else
  728. cheats.b_ht = "Text"
  729. end
  730. button.v.Text = cheats.b_ht
  731. else
  732. if cheats[button.Name] == true then
  733. cheats[button.Name] = false
  734. button.v.Text = "OFF"
  735. button.v.TextColor3 = Color3.fromRGB(255,0,0)
  736. else
  737. cheats[button.Name] = true
  738. button.v.Text = "ON"
  739. button.v.TextColor3 = Color3.fromRGB(0,255,0)
  740. end
  741. end
  742. end)
  743. end
  744. end
  745.  
  746. --initial player addition
  747. for _,v in pairs(game:GetService("Players"):GetChildren()) do
  748. if not (v.Name == localplayer.Name) then
  749. if not (espf:FindFirstChild(v.Name)) then
  750. addEsp(v)
  751. end
  752. end
  753. end
  754.  
  755. --open/close gui
  756. game:GetService("UserInputService").InputBegan:connect(function(input, gameProcessed)
  757. if input.KeyCode == Enum.KeyCode.KeypadOne then
  758. if not gameProcessed then
  759. age1.Enabled = not age1.Enabled
  760. end
  761. end
  762. end)
  763.  
  764. --auto-update
  765. while wait(10) do
  766. for _,v in pairs(game:GetService("Players"):GetChildren()) do
  767. if not (v.Name == localplayer.Name) then
  768. if not (espf:FindFirstChild(v.Name)) then
  769. addEsp(v)
  770. end
  771. end
  772. end
  773. end
  774. end
  775. end,
  776. })
  777.  
  778. local Toggle = ToggleTab:CreateToggle({
  779. Name = "Silent Aim",
  780. CurrentValue = false,
  781. Flag = "Toggle2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  782. Callback = function(Value)
  783. loadstring(game:HttpGet("https://raw.githubusercontent.com/RFS-cmd/-/main/first"))()
  784.  
  785. Aiming.TargetPart = {"Head"}
  786. Aiming.FOV = 170
  787. Aiming.FOVSides = 250
  788. Aiming.HitChance = 170
  789. Aiming.ShowFOV = false
  790. getgenv().AutoPrediction = true
  791. getgenv().Prediction = 0.157
  792. -- auto prediction highly recommended...
  793. if getgenv().AutoPrediction == true then
  794. function h()
  795. while true do wait()
  796. local pingvalue = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString()
  797. local split = string.split(pingvalue,'(')
  798. local ping = tonumber(split[1])
  799. if ping > 200 and ping < 300 then
  800. getgenv().Predictio = 0.18742
  801. elseif ping > 180 and ping < 195 then
  802. getgenv().Predictio = 0.16779123
  803. elseif ping > 140 and ping < 180 then
  804. getgenv().Predictio = 0.16
  805. elseif ping > 110 and ping < 140 then
  806. getgenv().Predictio = 0.15934
  807. elseif ping < 105 then
  808. getgenv().Predictio = 0.138
  809. elseif ping < 90 then
  810. getgenv().Predictio = 0.136
  811. elseif ping < 80 then
  812. getgenv().Predictio = 0.134
  813. elseif ping < 70 then
  814. getgenv().Predictio = 0.131
  815. elseif ping < 60 then
  816. getgenv().Predictio = 0.1229
  817. elseif ping < 50 then
  818. getgenv().Predictio = 0.1225
  819. elseif ping < 40 then
  820. getgenv().Predictio = 0.1256
  821. end
  822. getgenv().Prediction = getgenv().Predictio
  823.  
  824. end
  825. end
  826.  
  827. spawn(h)
  828. end
  829. end,
  830. })
  831.  
  832. local Button = Tab:CreateButton({
  833. Name = "Button Example",
  834. Callback = function()
  835. local Players = game:GetService("Players")
  836.  
  837. -- Define the reset brick
  838. local resetBrick = Instance.new("Part")
  839. resetBrick.Size = Vector3.new(5, 1, 5)
  840. resetBrick.BrickColor = BrickColor.new("Bright red")
  841. resetBrick.Anchored = true
  842. resetBrick.CanCollide = true
  843. resetBrick.Name = "ResetBrick"
  844.  
  845. -- Define the function to reset the player's position
  846. local function resetPlayerPosition(player)
  847. local character = player.Character
  848. if character then
  849. character:MoveTo(Vector3.new(0, 5, 0))
  850. end
  851. end
  852.  
  853. -- Spawn the reset brick and connect it to the reset function
  854. resetBrick.Position = Vector3.new(0, 0.5, 0)
  855. resetBrick.Parent = workspace
  856.  
  857. resetBrick.Touched:Connect(function(hit)
  858. local humanoid = hit.Parent:FindFirstChildOfClass("Humanoid")
  859. if humanoid then
  860. local player = Players:GetPlayerFromCharacter(hit.Parent)
  861. if player then
  862. resetPlayerPosition(player)
  863. end
  864. end
  865. end)
  866. end,
  867. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement