-- Discord Server = https://discord.gg/EsWrgYEm8s print("Discord Server = https://discord.gg/EsWrgYEm8s") local Mana = loadstring(game:HttpGet("https://pastebin.com/raw/inP2PXxe"))() local OpenSourceESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/1temz/ESP/master/source.lua"))() local Win = Mana:Window("BLOXWIN.CC") -- Creates the Window AKA Adds the ScreenGui to CoreGui lol local Aim = Mana:SName("AIM") -- Creates a littel information mark in the top left looks cool ngl try it local Rage = Win:Tab("RAGE") -- This Creates a Tab on the left Side local Legit = Win:Tab("LEGIT") -- This Creates a Tab on the left Side local other = Mana:SName("OTHER") -- Creates a littel information mark in the top left looks cool ngl try it local ESP = Win:Tab("ESP") -- This Creates a Tab on the left Side local Misc = Win:Tab("MISC") -- This Creates a Tab on the left Side Rage:Button("Load", false, function(t) -- This is A Button end) Rage:line() -- This Creates a line aka some space for a new section or something like that :P Rage:Label("Made by toxyrd#0001") -- This is just for information or Text ;) Legit:Button("Load", false, function(t) -- This is A Button end) Misc:Slider("Walk Speed", 1, 500, 16, function(v) -- 1st is String | 2nd is min | 3rd is max | 4th is start whew game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end) Misc:Slider("Jump Power", 1, 500, 16, function(v) -- 1st is String | 2nd is min | 3rd is max | 4th is start whew game.Players.LocalPlayer.Character.Humanoid.JumpPower = v end) Legit:line() -- This Creates a line aka some space for a new section or something like that :P Legit:Label("Made by toxyrd#0001") -- This is just for information or Text ;) ESP:Button("Load ESP", function() -- This is A Button OpenSourceESP:Tracers(true, Color3.fromRGB(255, 255, 255)) OpenSourceESP:Boxes(true, Color3.fromRGB(255, 255, 255)) OpenSourceESP:TeamCheck(true) end) ESP:line() -- This Creates a line aka some space for a new section or something like that :P ESP:Label("Made by toxyrd#0001") -- This is just for information or Text ;) game.StarterGui:SetCore("SendNotification", { Title = "BLOXWIN"; -- the title (ofc) Text = "BLOXWIN INJECTED"; -- what the text says (ofc) Duration = 5; -- how long the notification should in secounds })