Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Hovering Part at Height with BodyThrust?

Asked by
l0cky2013 135
7 years ago

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!

01local thrust = {}
02 
03local RunService = game:GetService("RunService")
04 
05local function getmass(part)
06    return part:GetMass()*workspace.Gravity
07end
08 
09 
10function thrust:hover(thruster, height, a)
11    local mass = getmass(thruster)
12    local force = mass * a
13    local obj = thruster:FindFirstChild("thrust") --//BodyThrust
14    RunService.RenderStepped:connect(function()
15        local r = Ray.new(thruster.Position, thruster.CFrame.upVector * -30)
View all 25 lines...

Script calling hover:

1require(game.ReplicatedStorage.ModuleScript):hover(script.Parent, 3, 2)

Answer this question