Hovering Part at Height with BodyThrust?
Hi all, I am trying to compose a function that keeps a part suspended at a constant height from a hit position, using bodythrusts. The below is what I have thus far, but I know that my logic behind applying the force is incorrect, as it thrusts up past the given height, and falls down. I would appreciate if anyone can at least help me solve this dilemma. Thanks!
03 | local RunService = game:GetService( "RunService" ) |
05 | local function getmass(part) |
06 | return part:GetMass()*workspace.Gravity |
10 | function thrust:hover(thruster, height, a) |
11 | local mass = getmass(thruster) |
12 | local force = mass * a |
13 | local obj = thruster:FindFirstChild( "thrust" ) |
14 | RunService.RenderStepped:connect( function () |
15 | local r = Ray.new(thruster.Position, thruster.CFrame.upVector * - 30 ) |
16 | local ignore = { thruster } |
17 | local part, pos, face = workspace:FindPartOnRayWithIgnoreList(r, ignore, false , true ) |
18 | local distance = (thruster.Position - pos).magnitude |
19 | obj.Force = Vector 3. new( 0 , (height/distance)*force, 0 ) |
Script calling hover:
1 | require(game.ReplicatedStorage.ModuleScript):hover(script.Parent, 3 , 2 ) |