-- get rid of pants and shirt for script to work :D local a = Instance.new("Pants") a.PantsTemplate = "http://www.roblox.com/asset/?id=451216658" a.Name = "Pants" a.Parent = game.Players.LocalPlayer.Character local ScreenGui = Instance.new("ScreenGui") local name = Instance.new("TextBox") local die = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui name.Name = "name" name.Parent = ScreenGui name.BackgroundColor3 = Color3.new(1, 1, 1) name.Size = UDim2.new(0, 200, 0, 50) name.Font = Enum.Font.SourceSans name.FontSize = Enum.FontSize.Size14 name.Text = "name" name.TextSize = 14 die.Name = "die" die.Parent = name die.BackgroundColor3 = Color3.new(1, 1, 1) die.Position = UDim2.new(0, 0, 0, 50) die.Size = UDim2.new(0, 200, 0, 50) die.Font = Enum.Font.SourceSans die.FontSize = Enum.FontSize.Size14 die.Text = "Death" die.TextSize = 14 local me = game.Players.LocalPlayer.Character me.HumanoidRootPart.CFrame = CFrame.new(-76.253, 16.723, -53.8) local victim = name.Text die.MouseButton1Click:connect(function() local chair = Instance.new("Model") chair.Name = "DeathChair" chair.Parent = game.Workspace local a = Instance.new("Part") a.Size = Vector3.new(3.49, 0.05, 3.26) a.CFrame = CFrame.new(-68.585, 3.165, -53.73) a.Parent = chair local b = Instance.new("Part") b.Size = Vector3.new(0.05, 3.48, 3.26) b.CFrame = CFrame.new(-66.865, 4.88, -53.73) b.Parent = chair local c = Instance.new("Part") c.Size = Vector3.new(0.31, 3.19, 0.45) c.CFrame = CFrame.new(-66.994, 1.595, -55.145) c.Parent = chair local d = Instance.new("Part") d.Size = Vector3.new(0.31, 3.19, 0.45) d.CFrame = CFrame.new(-66.995, 1.595, -52.325) d.Parent = chair local e = Instance.new("Part") e.Size = Vector3.new(0.31, 3.19, 0.45) e.CFrame = CFrame.new(-70.159, 1.595, -52.325) e.Parent = chair local f = Instance.new("Part") f.Size = Vector3.new(0.05, 3.48, 3.26) f.CFrame = CFrame.new(-66.865, 4.88, -53.73) f.Parent = chair a.Anchored = true b.Anchored = true c.Anchored = true d.Anchored = true e.Anchored = true f.Anchored = true game.Players[name.Text].Character.Humanoid.Name = "NHumanoid" game.Players[name.Text].Character.Humanoid.WalkSpeed = 0 game.Players[name.Text].Character.Humanoid.JumpPower = 0 local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://536675558" sound.Volume = 5 sound.Playing = true sound.Parent = game.Workspace game.Players[name.Text].Character.HumanoidRootPart.CFrame = CFrame.new(-68.426, 10.444, -53.572) wait(10) sound:Destroy() game.Players[name.Text].Character.NHumanoid.Name = "Humanoid" chair:Destroy() game.Players[victim].Character.Humanoid.Health = 0 end)