Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
- local Window = Rayfield:CreateWindow({
- Name = "hoods downfall",
- LoadingTitle = "hoods downfall",
- LoadingSubtitle = "by downfall scripts",
- ConfigurationSaving = {
- Enabled = false,
- FolderName = nil, -- Create a custom folder for your hub/game
- FileName = "hoodsdownfallscript"
- },
- Discord = {https://[Log in to view URL]
- Enabled = true,
- Invite = "https://[Log in to view URL]", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
- RememberJoins = true -- Set this to false to make them join the discord every time they load it up
- },
- KeySystem = true, -- Set this to true to use our key system
- KeySettings = {
- Title = "hoodsdownfallscript / Key",
- Subtitle = "link in Discord",
- Note = "join server in misc tab",
- FileName = "hoodsdownfallscriptkey", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
- SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
- GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
- 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")
- }
- })
- local MainTab = Window:CreateTab("🏠Home", nil) -- Title, Image
- local MainSection = MainTab:CreateSection("MainSection")
- Rayfield:Notify({
- Title = "downfall executed",
- Content = "Remember to join the Discord",
- Duration = 5,
- Image = 4483362458,
- Actions = { -- Notification Buttons
- Ignore = {
- Name = "Okay!",
- Callback = function()
- print("The user tapped Okay!")
- end
- },
- },
- })
- local HttpService = game:GetService("HttpService")
- local TeleportService = game:GetService("TeleportService")
- local PlaceId = 2788229376
- local Response = syn.request({
- Url = string.format("https://[Log in to view URL]", tostring(PlaceId)),
- Method = "GET"
- })
- local GetRandomJobId = function()
- local JSONDecode = HttpService:JSONDecode(Response.Body)
- return JSONDecode.data[math.random(1, table.getn(JSONDecode.data))].id
- end
- TeleportService:TeleportToPlaceInstance(PlaceId, GetRandomJobId())
- local Button = MainTab:CreateButton({
- Name = "fly",
- Callback = function()
- repeat wait()
- until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
- local mouse = game.Players.LocalPlayer:GetMouse()
- repeat wait() until mouse
- local plr = game.Players.LocalPlayer
- local torso = plr.Character.HumanoidRootPart
- local flying = true
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local maxspeed = 50
- local speed = 0
- function Fly()
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0.1,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- plr.Character.Humanoid.PlatformStand = true
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed+.5+(speed/maxspeed)
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = speed-1
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- 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
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- 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
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- plr.Character.Humanoid.PlatformStand = false
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "e" then
- if flying then flying = false
- else
- flying = true
- Fly()
- end
- elseif key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- end
- end)
- Fly()
- end,
- })
- local Slider = MainTab:CreateSlider({
- Name = "WalkSpeed",
- Range = {0, 300},
- Increment = 1,
- Suffix = "speed",
- CurrentValue = 16,
- 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
- Callback = function(Value)
- game.players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
- end,
- })
- local TeleportTab = Window:CreateTab("Teleports", nil) -- Title, Image
- local Section = TeleportTab:CreateSection("Teleports")
- local Button = TeleportTab:CreateButton({
- Name = "Bank",
- Callback = function()
- Bank.Name = "Bank"
- Bank.Parent = Frame
- Bank.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- Bank.Position = UDim2.new(0.0164835174, 0, 0.0740740746, 0)
- Bank.Size = UDim2.new(0, 164, 0, 58)
- Bank.Text = "Bank"
- Bank.TextColor3 = Color3.fromRGB(0, 0, 0)
- Bank.TextScaled = true
- Bank.TextSize = 14.000
- Bank.TextWrapped = true
- Bank.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-436.293091, 22.9756889, -284.663605)
- end)
- end,
- })
- local Button = teleportTab:CreateButton({
- Name = "food",
- Callback = function()
- FoodStore.Name = "Food Store"
- FoodStore.Parent = Frame
- FoodStore.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- FoodStore.Position = UDim2.new(0.516483545, 0, 0.0740740746, 0)
- FoodStore.Size = UDim2.new(0, 164, 0, 58)
- FoodStore.Text = "Food Store Downhills"
- FoodStore.TextColor3 = Color3.fromRGB(0, 0, 0)
- FoodStore.TextScaled = true
- FoodStore.TextSize = 14.000
- FoodStore.TextWrapped = true
- FoodStore.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(299.333008, 49.2826653, -614.396179)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "food2",
- Callback = function()
- FoodStore2.Name = "Food Store 2"
- FoodStore2.Parent = Frame
- FoodStore2.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- FoodStore2.Position = UDim2.new(0.516483545, 0, 0.574712694, 0)
- FoodStore2.Size = UDim2.new(0, 164, 0, 58)
- FoodStore2.Text = "Food Store Uphills"
- FoodStore2.TextColor3 = Color3.fromRGB(0, 0, 0)
- FoodStore2.TextScaled = true
- FoodStore2.TextSize = 14.000
- FoodStore2.TextWrapped = true
- FoodStore2.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-336.987122, 23.6826477, -298.932709)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Gas station",
- Callback = function()
- GasStation.Name = "Gas Station"
- GasStation.Parent = Frame
- GasStation.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- GasStation.Position = UDim2.new(0.516483545, 0, 0.167305231, 0)
- GasStation.Size = UDim2.new(0, 164, 0, 58)
- GasStation.Text = "Gas Station"
- GasStation.TextColor3 = Color3.fromRGB(0, 0, 0)
- GasStation.TextScaled = true
- GasStation.TextSize = 14.000
- GasStation.TextWrapped = true
- GasStation.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(590.96167, 49.0000458, -259.772461)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Poclice Station",
- Callback = function()
- Policestation.Name = "Police station"
- Policestation.Parent = Frame
- Policestation.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- Policestation.Position = UDim2.new(0.516483545, 0, 0.268199205, 0)
- Policestation.Size = UDim2.new(0, 164, 0, 58)
- Policestation.Text = "Police Station"
- Policestation.TextColor3 = Color3.fromRGB(0, 0, 0)
- Policestation.TextScaled = true
- Policestation.TextSize = 16.000
- Policestation.TextWrapped = true
- Policestation.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-267.225189, 21.7999573, -113.573311)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Da Casino",
- Callback = function()
- DaCasino.Name = "Da Casino"
- DaCasino.Parent = Frame
- DaCasino.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- DaCasino.Position = UDim2.new(0.0164835174, 0, 0.371647537, 0)
- DaCasino.Size = UDim2.new(0, 164, 0, 58)
- DaCasino.Text = "Da Casino"
- DaCasino.TextColor3 = Color3.fromRGB(0, 0, 0)
- DaCasino.TextScaled = true
- DaCasino.TextSize = 14.000
- DaCasino.TextWrapped = true
- DaCasino.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-887.471619, 21.75, -124.488388)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Basketball Court",
- Callback = function()
- Basketball.Name = "Basketball"
- Basketball.Parent = Frame
- Basketball.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- Basketball.Position = UDim2.new(0.516483545, 0, 0.472541511, 0)
- Basketball.Size = UDim2.new(0, 164, 0, 58)
- Basketball.Text = "Basketball"
- Basketball.TextColor3 = Color3.fromRGB(0, 0, 0)
- Basketball.TextScaled = true
- Basketball.TextSize = 14.000
- Basketball.TextWrapped = true
- Basketball.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-931.971558, 22.0998211, -481.859589)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Downhill Gunz",
- Callback = function()
- ThyronesGunstore1.Name = "Thyrones Gunstore 1#"
- ThyronesGunstore1.Parent = Frame
- ThyronesGunstore1.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- ThyronesGunstore1.Position = UDim2.new(0.0164835174, 0, 0.574712694, 0)
- ThyronesGunstore1.Size = UDim2.new(0, 164, 0, 58)
- ThyronesGunstore1.Text = "Thyrones Gunstore #1"
- ThyronesGunstore1.TextColor3 = Color3.fromRGB(0, 0, 0)
- ThyronesGunstore1.TextScaled = true
- ThyronesGunstore1.TextSize = 14.000
- ThyronesGunstore1.TextWrapped = true
- ThyronesGunstore1.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(482.312347, 48.0705032, -624.330505)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Uphill Gunz",
- Callback = function()
- ThyronesGunstore2.Name = "Thyrones Gunstore 2#"
- ThyronesGunstore2.Parent = Frame
- ThyronesGunstore2.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- ThyronesGunstore2.Position = UDim2.new(0.516483545, 0, 0.678160906, 0)
- ThyronesGunstore2.Size = UDim2.new(0, 164, 0, 58)
- ThyronesGunstore2.Text = "Thyrones Gunstore 2#"
- ThyronesGunstore2.TextColor3 = Color3.fromRGB(0, 0, 0)
- ThyronesGunstore2.TextScaled = true
- ThyronesGunstore2.TextSize = 14.000
- ThyronesGunstore2.TextWrapped = true
- ThyronesGunstore2.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-582.699829, 8.31478119, -736.593994)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "UFO",
- Callback = function()
- UFO.Name = "UFO"
- UFO.Parent = Frame
- UFO.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- UFO.Position = UDim2.new(0.0164835174, 0, 0.678160906, 0)
- UFO.Size = UDim2.new(0, 164, 0, 58)
- UFO.Text = "UFO"
- UFO.TextColor3 = Color3.fromRGB(0, 0, 0)
- UFO.TextScaled = true
- UFO.TextSize = 14.000
- UFO.TextWrapped = true
- UFO.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(66.5427094, 139, -697.639526)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Admin Base",
- Callback = function()
- LavaLairStore.Name = "Lava Lair Store"
- LavaLairStore.Parent = Frame
- LavaLairStore.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- LavaLairStore.Position = UDim2.new(0.516483545, 0, 0.876117468, 0)
- LavaLairStore.Size = UDim2.new(0, 164, 0, 58)
- LavaLairStore.Text = "Lava Lair Store"
- LavaLairStore.TextColor3 = Color3.fromRGB(0, 0, 0)
- LavaLairStore.TextScaled = true
- LavaLairStore.TextSize = 14.000
- LavaLairStore.TextWrapped = true
- LavaLairStore.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-787.381592, -39.6492004, -933.489075)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Gym",
- Callback = function()
- Gym.Name = "Gym"
- Gym.Parent = Frame
- Gym.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
- Gym.Position = UDim2.new(0.0164835453, 0, 0.876117468, 0)
- Gym.Size = UDim2.new(0, 164, 0, 58)
- Gym.Text = "Gym"
- Gym.TextColor3 = Color3.fromRGB(0, 0, 0)
- Gym.TextScaled = true
- Gym.TextSize = 14.000
- Gym.TextWrapped = true
- Gym.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-77.2380142, 22.7002907, -638.656982)
- end)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Sewer",
- Callback = function()
- sewer.Name = "sewer"
- sewer.Parent = Frame_2
- sewer.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
- sewer.Position = UDim2.new(0.531694353, 0, 0.421621978, 0)
- sewer.Size = UDim2.new(0, 158, 0, 57)
- sewer.Font = Enum.Font.SourceSans
- sewer.Text = "Sewer"
- sewer.TextColor3 = Color3.fromRGB(0, 0, 0)
- sewer.TextScaled = true
- sewer.TextSize = 14.000
- sewer.TextWrapped = true
- sewer.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(103.128914, -26.7500305, -274.729767)
- end)
- end,
- })
- local TogglesTab = Window:CreateTab("Toggles", nil)
- local Section = TogglesTab:CreateSection("Toggles")
- local Toggle = TogglesTab:CreateToggle({
- Name = "Esp",
- CurrentValue = false,
- 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
- Callback = function(Value)
- local custom_theme = {} --soon
- local function CreateInstance(cls,props)
- local inst = Instance.new(cls)
- for i,v in pairs(props) do
- inst[i] = v
- end
- return inst
- end
- local age1 = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,Name='age1', Parent=game.CoreGui})
- 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})
- 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 })
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- 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})
- p_visuals.Draggable = true
- title1.LayoutOrder = 0 title1_2.LayoutOrder = 1
- 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
- local localplayer = game:GetService"Players".LocalPlayer
- local uis = game:GetService"UserInputService"
- local cheats = {
- b_b = false;
- b_f = false;
- b_f_t = 1;
- b_sd = false;
- b_sn = false;
- b_sh = false;
- b_ht = "Text";
- b_rt = false;
- b_tc = false;
- }
- local cheatsf = Instance.new("Folder", game.CoreGui) cheatsf.Name = "cheats"
- local espf = Instance.new("Folder", cheatsf) espf.Name = "esp"
- function addEsp(player)
- local bbg = Instance.new("BillboardGui", espf)
- bbg.Name = player.Name
- bbg.AlwaysOnTop = true
- bbg.Size = UDim2.new(4,0,5.4,0)
- bbg.ClipsDescendants = false
- local outlines = Instance.new("Frame", bbg)
- outlines.Size = UDim2.new(1,0,1,0)
- outlines.BorderSizePixel = 0
- outlines.BackgroundTransparency = 1
- local left = Instance.new("Frame", outlines)
- left.BorderSizePixel = 0
- left.Size = UDim2.new(0,1,1,0)
- local right = left:Clone()
- right.Parent = outlines
- right.Size = UDim2.new(0,-1,1,0)
- right.Position = UDim2.new(1,0,0,0)
- local up = left:Clone()
- up.Parent = outlines
- up.Size = UDim2.new(1,0,0,1)
- local down = left:Clone()
- down.Parent = outlines
- down.Size = UDim2.new(1,0,0,-1)
- down.Position = UDim2.new(0,0,1,0)
- local info = Instance.new("BillboardGui", bbg)
- info.Name = "info"
- info.Size = UDim2.new(3,0,0,54)
- info.StudsOffset = Vector3.new(3.6,-3,0)
- info.AlwaysOnTop = true
- info.ClipsDescendants = false
- local namelabel = Instance.new("TextLabel", info)
- namelabel.Name = "namelabel"
- namelabel.BackgroundTransparency = 1
- namelabel.TextStrokeTransparency = 0
- namelabel.TextXAlignment = Enum.TextXAlignment.Left
- namelabel.Size = UDim2.new(0,100,0,18)
- namelabel.Position = UDim2.new(0,0,0,0)
- namelabel.Text = player.Name
- local distancel = Instance.new("TextLabel", info)
- distancel.Name = "distancelabel"
- distancel.BackgroundTransparency = 1
- distancel.TextStrokeTransparency = 0
- distancel.TextXAlignment = Enum.TextXAlignment.Left
- distancel.Size = UDim2.new(0,100,0,18)
- distancel.Position = UDim2.new(0,0,0,18)
- local healthl = Instance.new("TextLabel", info)
- healthl.Name = "healthlabel"
- healthl.BackgroundTransparency = 1
- healthl.TextStrokeTransparency = 0
- healthl.TextXAlignment = Enum.TextXAlignment.Left
- healthl.Size = UDim2.new(0,100,0,18)
- healthl.Position = UDim2.new(0,0,0,36)
- local uill = Instance.new("UIListLayout", info)
- local forhealth = Instance.new("BillboardGui", bbg)
- forhealth.Name = "forhealth"
- forhealth.Size = UDim2.new(5,0,6,0)
- forhealth.AlwaysOnTop = true
- forhealth.ClipsDescendants = false
- local healthbar = Instance.new("Frame", forhealth)
- healthbar.Name = "healthbar"
- healthbar.BackgroundColor3 = Color3.fromRGB(40,40,40)
- healthbar.BorderColor3 = Color3.fromRGB(0,0,0)
- healthbar.Size = UDim2.new(0.04,0,0.9,0)
- healthbar.Position = UDim2.new(0,0,0.05,0)
- local bar = Instance.new("Frame", healthbar)
- bar.Name = "bar"
- bar.BorderSizePixel = 0
- bar.BackgroundColor3 = Color3.fromRGB(94,255,69)
- bar.AnchorPoint = Vector2.new(0,1)
- bar.Position = UDim2.new(0,0,1,0)
- bar.Size = UDim2.new(1,0,1,0)
- local co = coroutine.create(function()
- while wait(0.1) do
- if (player.Character and player.Character:FindFirstChild"HumanoidRootPart") then
- bbg.Adornee = player.Character.HumanoidRootPart
- info.Adornee = player.Character.HumanoidRootPart
- forhealth.Adornee = player.Character.HumanoidRootPart
- if (player.Team ~= localplayer.Team) then
- bbg.Enabled = true
- info.Enabled = true
- forhealth.Enabled = true
- end
- if player.Character:FindFirstChild("ForceField") then
- outlines.BackgroundTransparency = 0.4
- left.BackgroundTransparency = 0.4
- right.BackgroundTransparency = 0.4
- up.BackgroundTransparency = 0.4
- down.BackgroundTransparency = 0.4
- healthl.TextTransparency = 0.4
- healthl.TextStrokeTransparency = 0.8
- distancel.TextTransparency = 0.4
- distancel.TextStrokeTransparency = 0.8
- namelabel.TextTransparency = 0.4
- namelabel.TextStrokeTransparency = 0.8
- bar.BackgroundTransparency = 0.4
- healthbar.BackgroundTransparency = 0.8
- else
- outlines.BackgroundTransparency = 0
- left.BackgroundTransparency = 0
- right.BackgroundTransparency = 0
- up.BackgroundTransparency = 0
- down.BackgroundTransparency = 0
- healthl.TextTransparency = 0
- healthl.TextStrokeTransparency = 0
- distancel.TextTransparency = 0
- distancel.TextStrokeTransparency = 0
- namelabel.TextTransparency = 0
- namelabel.TextStrokeTransparency = 0
- bar.BackgroundTransparency = 0
- healthbar.BackgroundTransparency = 0
- end
- if cheats.b_b == true then
- outlines.Visible = true
- else
- outlines.Visible = false
- end
- if cheats.b_f == true then
- if player.Character:FindFirstChild("ForceField") then
- outlines.BackgroundTransparency = 0.9
- else
- outlines.BackgroundTransparency = cheats.b_f_t
- end
- else
- outlines.BackgroundTransparency = 1
- end
- if cheats.b_sh == true then
- if (player.Character:FindFirstChild"Humanoid") then
- healthl.Text = "Health: "..math.floor(player.Character:FindFirstChild"Humanoid".Health)
- healthbar.bar.Size = UDim2.new(1,0,player.Character:FindFirstChild"Humanoid".Health/player.Character:FindFirstChild"Humanoid".MaxHealth,0)
- end
- if cheats.b_ht == "Text" then
- healthbar.Visible = false
- healthl.Visible = true
- end
- if cheats.b_ht == "Bar" then
- healthl.Visible = false
- healthbar.Visible = true
- end
- if cheats.b_ht == "Both" then
- healthl.Visible = true
- healthbar.Visible = true
- end
- else
- healthl.Visible = false
- healthbar.Visible = false
- end
- if cheats.b_sn then
- namelabel.Visible = true
- else
- namelabel.Visible = false
- end
- if cheats.b_sd == true then
- distancel.Visible = true
- if (localplayer.Character and localplayer.Character:FindFirstChild"HumanoidRootPart") then
- distancel.Text = "Distance: "..math.floor(0.5+(localplayer.Character:FindFirstChild"HumanoidRootPart".Position - player.Character:FindFirstChild"HumanoidRootPart".Position).magnitude)
- end
- else
- distancel.Visible = false
- end
- if cheats.b_rt == true then
- if (player.Team == localplayer.Team) then
- bbg.Enabled = true
- info.Enabled = true
- forhealth.Enabled = true
- end
- else
- if (player.Team == localplayer.Team) then
- bbg.Enabled = false
- info.Enabled = false
- forhealth.Enabled = false
- end
- end
- if cheats.b_tc == true then
- outlines.BackgroundColor3 = player.TeamColor.Color
- left.BackgroundColor3 = player.TeamColor.Color
- right.BackgroundColor3 = player.TeamColor.Color
- up.BackgroundColor3 = player.TeamColor.Color
- down.BackgroundColor3 = player.TeamColor.Color
- healthl.TextColor3 = player.TeamColor.Color
- distancel.TextColor3 = player.TeamColor.Color
- namelabel.TextColor3 = player.TeamColor.Color
- else
- if (player.Team == localplayer.Team) then
- outlines.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- left.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- right.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- up.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- down.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- healthl.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- distancel.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- namelabel.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
- else
- outlines.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- left.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- right.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- up.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- down.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- healthl.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- distancel.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- namelabel.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
- end
- end
- end
- if not (game:GetService"Players":FindFirstChild(player.Name)) then
- print(player.Name.." has left. Clearing esp.")
- espf:FindFirstChild(player.Name):Destroy()
- coroutine.yield()
- end
- end
- end)
- coroutine.resume(co)
- end
- --main
- do
- wait(2)
- --menu buttons
- for _,button in pairs(age1:GetDescendants()) do
- if button:IsA"TextButton" then
- button.MouseButton1Click:connect(function()
- if button.Name == "b_f_t" then
- if cheats.b_f_t >= 0 then
- cheats.b_f_t = cheats.b_f_t+0.1
- if cheats.b_f_t > 1 then
- cheats.b_f_t = 0
- end
- end
- button.v.Text = cheats.b_f_t
- elseif button.Name == "b_ht" then
- if cheats.b_ht == "Text" then
- cheats.b_ht = "Bar"
- elseif cheats.b_ht == "Bar" then
- cheats.b_ht = "Both"
- else
- cheats.b_ht = "Text"
- end
- button.v.Text = cheats.b_ht
- else
- if cheats[button.Name] == true then
- cheats[button.Name] = false
- button.v.Text = "OFF"
- button.v.TextColor3 = Color3.fromRGB(255,0,0)
- else
- cheats[button.Name] = true
- button.v.Text = "ON"
- button.v.TextColor3 = Color3.fromRGB(0,255,0)
- end
- end
- end)
- end
- end
- --initial player addition
- for _,v in pairs(game:GetService("Players"):GetChildren()) do
- if not (v.Name == localplayer.Name) then
- if not (espf:FindFirstChild(v.Name)) then
- addEsp(v)
- end
- end
- end
- --open/close gui
- game:GetService("UserInputService").InputBegan:connect(function(input, gameProcessed)
- if input.KeyCode == Enum.KeyCode.KeypadOne then
- if not gameProcessed then
- age1.Enabled = not age1.Enabled
- end
- end
- end)
- --auto-update
- while wait(10) do
- for _,v in pairs(game:GetService("Players"):GetChildren()) do
- if not (v.Name == localplayer.Name) then
- if not (espf:FindFirstChild(v.Name)) then
- addEsp(v)
- end
- end
- end
- end
- end
- end,
- })
- local Toggle = ToggleTab:CreateToggle({
- Name = "Silent Aim",
- CurrentValue = false,
- 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
- Callback = function(Value)
- loadstring(game:HttpGet("https://raw.githubusercontent.com/RFS-cmd/-/main/first"))()
- Aiming.TargetPart = {"Head"}
- Aiming.FOV = 170
- Aiming.FOVSides = 250
- Aiming.HitChance = 170
- Aiming.ShowFOV = false
- getgenv().AutoPrediction = true
- getgenv().Prediction = 0.157
- -- auto prediction highly recommended...
- if getgenv().AutoPrediction == true then
- function h()
- while true do wait()
- local pingvalue = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString()
- local split = string.split(pingvalue,'(')
- local ping = tonumber(split[1])
- if ping > 200 and ping < 300 then
- getgenv().Predictio = 0.18742
- elseif ping > 180 and ping < 195 then
- getgenv().Predictio = 0.16779123
- elseif ping > 140 and ping < 180 then
- getgenv().Predictio = 0.16
- elseif ping > 110 and ping < 140 then
- getgenv().Predictio = 0.15934
- elseif ping < 105 then
- getgenv().Predictio = 0.138
- elseif ping < 90 then
- getgenv().Predictio = 0.136
- elseif ping < 80 then
- getgenv().Predictio = 0.134
- elseif ping < 70 then
- getgenv().Predictio = 0.131
- elseif ping < 60 then
- getgenv().Predictio = 0.1229
- elseif ping < 50 then
- getgenv().Predictio = 0.1225
- elseif ping < 40 then
- getgenv().Predictio = 0.1256
- end
- getgenv().Prediction = getgenv().Predictio
- end
- end
- spawn(h)
- end
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Button Example",
- Callback = function()
- local Players = game:GetService("Players")
- -- Define the reset brick
- local resetBrick = Instance.new("Part")
- resetBrick.Size = Vector3.new(5, 1, 5)
- resetBrick.BrickColor = BrickColor.new("Bright red")
- resetBrick.Anchored = true
- resetBrick.CanCollide = true
- resetBrick.Name = "ResetBrick"
- -- Define the function to reset the player's position
- local function resetPlayerPosition(player)
- local character = player.Character
- if character then
- character:MoveTo(Vector3.new(0, 5, 0))
- end
- end
- -- Spawn the reset brick and connect it to the reset function
- resetBrick.Position = Vector3.new(0, 0.5, 0)
- resetBrick.Parent = workspace
- resetBrick.Touched:Connect(function(hit)
- local humanoid = hit.Parent:FindFirstChildOfClass("Humanoid")
- if humanoid then
- local player = Players:GetPlayerFromCharacter(hit.Parent)
- if player then
- resetPlayerPosition(player)
- end
- end
- end)
- end,
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement