Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by xCodeError!
- -- Please don't skid it or you gay
- local Main = Instance.new("ScreenGui")
- local _47squad = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local Title2 = Instance.new("TextLabel")
- local PoliceTeam = Instance.new("TextButton")
- local HeroTeam = Instance.new("TextButton")
- local CrimsTeam = Instance.new("TextButton")
- local Speed = Instance.new("TextButton")
- local Gravity = Instance.new("TextButton")
- local NoClip = Instance.new("TextButton")
- local InfNitro = Instance.new("TextButton")
- local Emotes = Instance.new("TextButton")
- local GamePass = Instance.new("TextButton")
- local RemoveTag = Instance.new("TextButton")
- local Fly = Instance.new("TextButton")
- local InfJump = Instance.new("TextButton")
- local Name = Instance.new("TextButton")
- local Money = Instance.new("TextButton")
- local XpFarm = Instance.new("TextButton")
- local NoALLTAGS = Instance.new("TextButton")
- local Lol = Instance.new("TextLabel")
- local opened = false
- local hidekey = Enum.KeyCode.Insert
- -- Properties
- Main.Name = "Main"
- Main.Parent = game.CoreGui
- Main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- _47squad.Name = "47squad"
- _47squad.Parent = Main
- _47squad.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- _47squad.Position = UDim2.new(0.385192126, 0, 0.306772888, 0)
- _47squad.Size = UDim2.new(0, 642, 0, 323)
- _47squad.Visible = false
- _47squad.Active = true
- _47squad.Draggble = true
- Title.Name = "Title"
- Title.Parent = _47squad
- Title.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Title.Size = UDim2.new(0, 642, 0, 25)
- Title.Font = Enum.Font.Code
- Title.Text = "47squad (madcity-0.1a)"
- Title.TextColor3 = Color3.new(1, 1, 1)
- Title.TextSize = 14
- Title2.Name = "Title2"
- Title2.Parent = _47squad
- Title2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Title2.Position = UDim2.new(0, 0, 0.922192335, 0)
- Title2.Size = UDim2.new(0, 642, 0, 25)
- Title2.Font = Enum.Font.Code
- Title2.Text = "made by xcodeerror"
- Title2.TextColor3 = Color3.new(1, 1, 1)
- Title2.TextSize = 14
- PoliceTeam.Name = "PoliceTeam"
- PoliceTeam.Parent = _47squad
- PoliceTeam.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- PoliceTeam.Position = UDim2.new(0.0965732038, 0, 0.123839013, 0)
- PoliceTeam.Size = UDim2.new(0, 94, 0, 26)
- PoliceTeam.Font = Enum.Font.Code
- PoliceTeam.Text = "JoinPolice"
- PoliceTeam.TextColor3 = Color3.new(1, 1, 1)
- PoliceTeam.TextSize = 14
- PoliceTeam.MouseButton1Click:connect(function()
- game.ReplicatedStorage.RemoteFunction:InvokeServer("SetTeam", "Police")
- end)
- HeroTeam.Name = "HeroTeam"
- HeroTeam.Parent = _47squad
- HeroTeam.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- HeroTeam.Position = UDim2.new(0.0965732038, 0, 0.343653262, 0)
- HeroTeam.Size = UDim2.new(0, 94, 0, 26)
- HeroTeam.Font = Enum.Font.Code
- HeroTeam.Text = "JoinHeroes"
- HeroTeam.TextColor3 = Color3.new(1, 1, 1)
- HeroTeam.TextSize = 14
- HeroTeam.MouseButton1Click:connect(function()
- game.ReplicatedStorage.RemoteFunction:InvokeServer("SetTeam", "Hero")
- end)
- CrimsTeam.Name = "CrimsTeam"
- CrimsTeam.Parent = _47squad
- CrimsTeam.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- CrimsTeam.Position = UDim2.new(0.0965732187, 0, 0.232198134, 0)
- CrimsTeam.Size = UDim2.new(0, 94, 0, 26)
- CrimsTeam.Font = Enum.Font.Code
- CrimsTeam.Text = "JoinCrims"
- CrimsTeam.TextColor3 = Color3.new(1, 1, 1)
- CrimsTeam.TextSize = 14
- CrimsTeam.MouseButton1Click:connect(function()
- game.ReplicatedStorage.RemoteFunction:InvokeServer("SetTeam", "Prisoners")
- end)
- Speed.Name = "Speed"
- Speed.Parent = _47squad
- Speed.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Speed.Position = UDim2.new(0.257009327, 0, 0.123839013, 0)
- Speed.Size = UDim2.new(0, 94, 0, 26)
- Speed.Font = Enum.Font.Code
- Speed.Text = "Speed[X]"
- Speed.TextColor3 = Color3.new(1, 1, 1)
- Speed.TextSize = 14
- Speed.MouseButton1Click:connect(function()
- local walkspeedplayer = game:GetService("Players").LocalPlayer -- speed [x]
- local walkspeedmouse = walkspeedplayer:GetMouse()
- local walkspeedenabled = false
- function x_walkspeed(key)
- if (key == "x") then
- if walkspeedenabled == false then
- _G.WS = 200;
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
- Humanoid.WalkSpeed = _G.WS;
- end)
- Humanoid.WalkSpeed = _G.WS;
- walkspeedenabled = true
- elseif walkspeedenabled == true then
- _G.WS = 20;
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
- Humanoid.WalkSpeed = _G.WS;
- end)
- Humanoid.WalkSpeed = _G.WS;
- walkspeedenabled = false
- end
- end
- end
- end)
- Gravity.Name = "Gravity"
- Gravity.Parent = _47squad
- Gravity.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Gravity.Position = UDim2.new(0.257009327, 0, 0.343653262, 0)
- Gravity.Size = UDim2.new(0, 94, 0, 26)
- Gravity.Font = Enum.Font.Code
- Gravity.Text = "Gravity"
- Gravity.TextColor3 = Color3.new(1, 1, 1)
- Gravity.TextSize = 14
- Gravity.MouseButton1Click:connect(function()
- game.workspace.Gravity = 45
- end)
- NoClip.Name = "NoClip"
- NoClip.Parent = _47squad
- NoClip.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- NoClip.Position = UDim2.new(0.257009357, 0, 0.232198134, 0)
- NoClip.Size = UDim2.new(0, 94, 0, 26)
- NoClip.Font = Enum.Font.Code
- NoClip.Text = "NoClip[B]"
- NoClip.TextColor3 = Color3.new(1, 1, 1)
- NoClip.TextSize = 14
- NoClip.MouseButton1Click:connect(function()
- local noclipplayer = game:GetService("Players").LocalPlayer -- noclip [b]
- local noclipmouse = noclipplayer:GetMouse()
- local donoclip = false
- local noclip = false
- function b_noclip(key)
- if (key == "b") then
- if noclip == false then
- donoclip = true
- noclip = true
- elseif noclip == true then
- donoclip = false
- noclip = false
- end
- end
- end
- noclipmouse.KeyDown:connect(b_noclip)
- game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
- if obj ~= workspace.Terrain then
- if donoclip == true then
- obj.CanCollide = false
- else
- obj.CanCollide = true
- end
- end
- end)
- end)
- InfNitro.Name = "InfNitro"
- InfNitro.Parent = _47squad
- InfNitro.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- InfNitro.Position = UDim2.new(0.412772596, 0, 0.120743036, 0)
- InfNitro.Size = UDim2.new(0, 94, 0, 26)
- InfNitro.Font = Enum.Font.Code
- InfNitro.Text = "Inf.Nitro"
- InfNitro.TextColor3 = Color3.new(1, 1, 1)
- InfNitro.TextSize = 14
- InfNitro.MouseButton1Click:connect(function()
- while wait() do -- inf nitro
- if workspace.ObjectSelection:FindFirstChild(game.Players.LocalPlayer.Name.."'s Vehicle") then
- pcall(function()workspace.ObjectSelection[game.Players.LocalPlayer.Name.."'s Vehicle"].CarChassis.Boost.Value = 100;end)
- end
- end
- end)
- Emotes.Name = "Emotes"
- Emotes.Parent = _47squad
- Emotes.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Emotes.Position = UDim2.new(0.412772596, 0, 0.340557277, 0)
- Emotes.Size = UDim2.new(0, 94, 0, 26)
- Emotes.Font = Enum.Font.Code
- Emotes.Text = "GetAllEmotes"
- Emotes.TextColor3 = Color3.new(1, 1, 1)
- Emotes.TextSize = 14
- Emotes.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Name = "FamedChris"
- end)
- GamePass.Name = "GamePass"
- GamePass.Parent = _47squad
- GamePass.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- GamePass.Position = UDim2.new(0.412772596, 0, 0.229102165, 0)
- GamePass.Size = UDim2.new(0, 94, 0, 26)
- GamePass.Font = Enum.Font.Code
- GamePass.Text = "GetGamepasses"
- GamePass.TextColor3 = Color3.new(1, 1, 1)
- GamePass.TextSize = 14
- GamePass.MouseButton1Click:connect(function()
- local gamepasses = {5275404, 5275406, 5275408, 5283883, 5285945, 5786950,5945566,5981868} -- free gamepasses
- for _,v in next, gamepasses do
- if not game.Players.LocalPlayer:FindFirstChild(tostring(v)) then
- local l = Instance.new("BoolValue", game.Players.LocalPlayer)
- l.Name = tostring(v)
- l.Value = true
- end
- end
- end)
- RemoveTag.Name = "RemoveTag"
- RemoveTag.Parent = _47squad
- RemoveTag.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- RemoveTag.Position = UDim2.new(0.735202432, 0, 0.123839013, 0)
- RemoveTag.Size = UDim2.new(0, 94, 0, 26)
- RemoveTag.Font = Enum.Font.Code
- RemoveTag.Text = "NoPlayerTag"
- RemoveTag.TextColor3 = Color3.new(1, 1, 1)
- RemoveTag.TextSize = 14
- RemoveTag.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Character.NameTag:Destroy()
- end)
- Fly.Name = "Fly"
- Fly.Parent = _47squad
- Fly.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Fly.Position = UDim2.new(0.735202432, 0, 0.232198149, 0)
- Fly.Size = UDim2.new(0, 94, 0, 26)
- Fly.Font = Enum.Font.Code
- Fly.Text = "Fly[F]"
- Fly.TextColor3 = Color3.new(1, 1, 1)
- Fly.TextSize = 14
- Fly.MouseButton1Click:connect(function()
- local humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid -- fly [e]
- if humanoid.RigType == Enum.HumanoidRigType.R15 then
- game:GetService('Players').LocalPlayer.Character.Humanoid.Name = "Humanoida"
- repeat wait()
- until game:GetService"Players".LocalPlayer and game:GetService"Players".LocalPlayer.Character and game:GetService"Players".LocalPlayer.Character:findFirstChild("UpperTorso") and game:GetService"Players".LocalPlayer.Character:findFirstChild("Humanoida")
- local mouse = game:GetService"Players".LocalPlayer:GetMouse()
- repeat wait() until mouse
- local plr = game:GetService"Players".LocalPlayer
- local torso = plr.Character.UpperTorso
- 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 = 100
- 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.Humanoida.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:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game:GetService("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:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game:GetService("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.Humanoida.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()
- else
- repeat wait()
- until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") 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.Torso
- 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
- end)
- InfJump.Name = "InfJump"
- InfJump.Parent = _47squad
- InfJump.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- InfJump.Position = UDim2.new(0.735202432, 0, 0.343653232, 0)
- InfJump.Size = UDim2.new(0, 94, 0, 26)
- InfJump.Font = Enum.Font.Code
- InfJump.Text = "InfJump"
- InfJump.TextColor3 = Color3.new(1, 1, 1)
- InfJump.TextSize = 14
- InfJump.MouseButton1Click:connect(function()
- local Player = game:GetService'Players'.LocalPlayer; -- inf jump
- local UIS = game:GetService'UserInputService';
- _G.JumpHeight = 50;
- function Action(Object, Function) if Object ~= nil then Function(Object); end end
- UIS.InputBegan:connect(function(UserInput)
- if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
- Action(Player.Character.Humanoid, function(self)
- if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
- Action(self.Parent.HumanoidRootPart, function(self)
- self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
- end)
- end
- end)
- end
- end)
- end)
- Name.Name = "Name"
- Name.Parent = _47squad
- Name.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Name.Position = UDim2.new(0.57320869, 0, 0.123839013, 0)
- Name.Size = UDim2.new(0, 94, 0, 26)
- Name.Font = Enum.Font.Code
- Name.Text = "ChangeName"
- Name.TextColor3 = Color3.new(1, 1, 1)
- Name.TextSize = 14
- Name.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Name = "47squad"
- end)
- Money.Name = "Money"
- Money.Parent = _47squad
- Money.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Money.Position = UDim2.new(0.573208749, 0, 0.232198134, 0)
- Money.Size = UDim2.new(0, 94, 0, 26)
- Money.Font = Enum.Font.Code
- Money.Text = "MoneyFarm"
- Money.TextColor3 = Color3.new(1, 1, 1)
- Money.TextSize = 14
- Money.MouseButton1Click:connect(function()
- loadstring(game:GetObjects("rbxassetid://3532505683")[1].Source)()
- end)
- XpFarm.Name = "XpFarm"
- XpFarm.Parent = _47squad
- XpFarm.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- XpFarm.Position = UDim2.new(0.57320869, 0, 0.343653262, 0)
- XpFarm.Size = UDim2.new(0, 94, 0, 26)
- XpFarm.Font = Enum.Font.Code
- XpFarm.Text = "Xp Farm"
- XpFarm.TextColor3 = Color3.new(1, 1, 1)
- XpFarm.TextSize = 14
- XpFarm.MouseButton1Click:connect(function()
- loadstring(game:GetObjects("rbxassetid://3843380653")[1].Source)()
- end)
- NoALLTAGS.Name = "NoALLTAGS"
- NoALLTAGS.Parent = _47squad
- NoALLTAGS.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- NoALLTAGS.Position = UDim2.new(0.0965732038, 0, 0.445820451, 0)
- NoALLTAGS.Size = UDim2.new(0, 504, 0, 26)
- NoALLTAGS.Font = Enum.Font.Code
- NoALLTAGS.Text = "RemoveAllTags"
- NoALLTAGS.TextColor3 = Color3.new(1, 1, 1)
- NoALLTAGS.TextSize = 14
- NoALLTAGS.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Character.NameTag.Title:Destroy() -- remove tags
- game.Players.LocalPlayer.Character.NameTag.Script:Destroy()
- game.Players.LocalPlayer.Character.NameTag.Icon.Rank:Destroy()
- game.Players.LocalPlayer.Character.NameTag:Destroy()
- end)
- Lol.Name = "Lol"
- Lol.Parent = Main
- Lol.BackgroundColor3 = Color3.new(1, 1, 1)
- Lol.BackgroundTransparency = 5.9899997711182
- Lol.Size = UDim2.new(0, 200, 0, 50)
- Lol.Font = Enum.Font.Cartoon
- Lol.Text = "47squad | menu - insert"
- Lol.TextColor3 = Color3.new(0, 0, 0)
- Lol.TextSize = 14
- game:GetService("UserInputService").InputBegan:connect(function(key)
- if key.KeyCode == Enum.KeyCode.Insert then
- if opened == true then
- opened = false
- _47squad.Visible = false
- elseif opened == false then
- opened = true
- _47squad.Visible = true
- end
- end
- end)
- game.StarterGui:SetCore("SendNotification",{Title="47squad",Text="Loaded."})
- wait(1)
- game.StarterGui:SetCore("SendNotification",{Title="47squad",Text="Press F8 to close/open menu"})
- wait(1)
- game.StarterGui:SetCore("SendNotification",{Title="47squad",Text="Script by xcodeerror"})
- warn("[47squad] Launched success!")
Advertisement
Add Comment
Please, Sign In to add comment