#SOLVED
1 messages · Page 1 of 1 (latest)
** You are now Level 10! **
local airvel = 0
if Air >= 1 then
airvel = Vector3.new(0,Air,0)
_G.Ragdoll(Victum,5)
end
local velocity = Instance.new("LinearVelocity",Victum.HumanoidRootPart)
velocity.MaxForce = math.huge
velocity.Attachment0 = Victum.HumanoidRootPart.RootAttachment
print(Victum.HumanoidRootPart.CFrame.LookVector)
velocity.VectorVelocity = Player.Character.HumanoidRootPart.CFrame.LookVector * Amount + airvel
velocity.RelativeTo = Enum.ActuatorRelativeTo.Attachment0
game.Debris:AddItem(velocity,.4)
end```
velocity.RelativeTo = Enum.ActuatorRelativeTo.Attachment0
this is the problem
change your script and do:
velocity.RelativeTo = Enum.ActuatorRelativeTo.World
ye
Thanks for help brochacco