how do i put a body thrust, I searched google but I can’t find anything
local bodyThrust = Instance.new("BodyThrust")
bodyThrust.Location = Vector3.new(0, -1, 0)
bodyThrust.Force = Vector3.new(1000000, 1000, 100000)
bodyThrust.Parent = character
how do i put a body thrust, I searched google but I can’t find anything
local bodyThrust = Instance.new("BodyThrust")
bodyThrust.Location = Vector3.new(0, -1, 0)
bodyThrust.Force = Vector3.new(1000000, 1000, 100000)
bodyThrust.Parent = character
Try parenting it to a part instead of a model. One part you could use could be character.HumanoidRootPart
.