local you = game:GetService("Players").LocalPlayer.Character local humanoid = you:FindFirstChild("Humanoid") local humanoidrootpart = you:FindFirstChild("HumanoidRootPart") local plr = game:GetService("Workspace"):FindFirstChild("4nn1") local plrhead = plr:FindFirstChild("Head") local plrhumanoid = plr:FindFirstChild("Humanoid") humanoidrootpart.CFrame = plrhead.CFrame * CFrame.new(0, 0, 1) local weld = Instance.new("WeldConstraint") weld.Part0 = humanoidrootpart weld.Part1 = plrhead weld.Parent = humanoidrootpart humanoid.Sit = true while true do task.wait(0.01) plrhead.CanCollide = false if not plr then weld:Destroy() humanoid.Sit = false plrhead.CanCollide = true break end if humanoid.Health == 0 then weld:Destroy() plrhead.CanCollide = true break end if humanoid.Jump == true then weld:Destroy() plrhead.CanCollide = true humanoid.Jump = true break end end