untitled boxing game script pastebin local key = Enum.KeyCode.E -- key to toggle invisibility --// dont edit script below local invis_on = false function onKeyPress(inputObject, chat) if chat then return end if inputObject.KeyCode == key then invis_on = not invis_on if invis_on then local savedpos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame wait() untitled boxing game script pastebin How to get it? untitled boxing game script pastebin game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -200, 0) wait(.15) local Seat = Instance.new('Seat', game.Workspace) Seat.Anchored = false Seat.CanCollide = false Seat.Name = 'invischair' Seat.Transparency = 1 Seat.Position = Vector3.new(0, -200, 0) local Weld = Instance.new("Weld", Seat) Weld.Part0 = Seat untitled boxing game script pastebin How to get it? untitled boxing game script pastebin Weld.Part1 = game.Players.LocalPlayer.Character:FindFirstChild("Torso") or game.Players.LocalPlayer.Character.UpperTorso wait() Seat.CFrame = savedpos game.StarterGui:SetCore("SendNotification", { Title = "Invis On"; Duration = 1; Text = ""; }) else workspace:FindFirstChild('invischair'):Remove() untitled boxing game script pastebin How to use it? untitled boxing game script pastebin game.StarterGui:SetCore("SendNotification", { Title = "Invis Off"; Duration = 1; Text = ""; }) end end end game:GetService("UserInputService").InputBegan:connect(onKeyPress) untitled boxing game script pastebin PasteShr untitled boxing game script pastebin wait (1) local ScreenGui = Instance.new("ScreenGui") local main = Instance.new("Frame") local label = Instance.new("TextLabel") local Hitbox = Instance.new("TextButton") ScreenGui.Parent = game.CoreGui main.Name = "main" untitled boxing game script pastebin How to dowload it? untitled boxing game script pastebin main.Parent = ScreenGui main.BackgroundColor3 = Color3.fromRGB(255, 0, 0) main.Position = UDim2.new(0.40427351, 0, 0.34591195, 0) main.Size = UDim2.new(0, 100, 0, 100) main.Active = true main.Draggable = true label.Name = "label" label.Parent = main label.BackgroundColor3 = Color3.fromRGB(139,0,0) untitled boxing game script pastebin How to use it? untitled boxing game script pastebin label.Size = UDim2.new(0, 100, 0, 20) label.Font = Enum.Font.SourceSans label.Text = "Hitbox Gui" label.TextColor3 = Color3.fromRGB(0, 0, 0) label.TextScaled = true label.TextSize = 5.000 label.TextWrapped = true Hitbox.Name = "Hitbox" Hitbox.Parent = main untitled boxing game script pastebin How to get it? untitled boxing game script pastebin Hitbox.BackgroundColor3 = Color3.fromRGB(0, 0, 255) Hitbox.Position = UDim2.new(0.114285722, 0, 0.372448981, 0) Hitbox.Size = UDim2.new(0, 90, 0, 40) Hitbox.Font = Enum.Font.SourceSans Hitbox.Text = "Hitbox" Hitbox.TextColor3 = Color3.fromRGB(0, 0, 0) Hitbox.TextSize = 40.000 Hitbox.MouseButton1Down:connect(function() _G.HeadSize = 20 untitled boxing game script pastebin How to get it? untitled boxing game script pastebin _G.Disabled = true game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize) v.Character.HumanoidRootPart.Transparency = 0.7 untitled boxing game script pastebin PasteShr untitled boxing game script pastebin v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black") v.Character.HumanoidRootPart.Material = "Neon" v.Character.HumanoidRootPart.CanCollide = false end) end end end end) end) untitled boxing game script pastebin