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

How do I make players float in bricks?

Asked by
DollorLua 235 Moderation Voter
6 years ago

I was trying to make a different version of FE2, might want to check it out, and i tried to make players float in the water. I have a script in StarterCharacterScripts and inside it has a Water.Touched function and a Water.TouchEnded function as seen here:

01head.Touched:connect(function(hit)
02    if hit:FindFirstChild('_Water') then
03    print('Hit By Water!')
04    TouchingWater = true
05    CurrentWater = hit
06    WaterState = hit.State.Value
07    local bodyforce = Instance.new("BodyForce")
08    bodyforce.Parent = head.Parent.HumanoidRootPart
09    bodyforce.Name = 'BodyForce'
10    bodyforce.Force = Vector3.new(0, 20000, 0)
11    end
12    end)
13    head.TouchEnded:connect(function(hit)
14    if hit:FindFirstChild('_Water') then
15    if head.Position.Y > hit.Position.Y then
16    TouchingWater = false
17    CurrentWater = nil
18    WaterState = 'Water'
19    head.Parent.HumanoidRootPart.BodyForce:Destroy()
20    end
21    end
22    end)

It does create the bodyforce however it only moves the player up when they jump. I don’t know how to fix or change this and yes theres another one that said the same thing from 4 years ago. I have tried using workspace. Gravity but i couldn’t get it to work right. If I should use workspace.Gravity show me a example of how it would work. This is in a normal script not a local script.

0
DollorMan this is not an answer, Just asking you, For how much time you've been learning to reach this level of scripting and, How did u learn? Zero_Tsou 175 — 6y
0
I actually learned how to script mainly by guessing what might work and using the dev wiki if it doesn't (https://developer.roblox.com) DollorLua 235 — 6y
0
maybe if u use the Humanoid.HipHeight. NickAtNick 163 — 6y
0
btw TouchEnded is very glitchy, I would recommend Region3 NickAtNick 163 — 6y
0
I have the Region3 module script by egomoose in use but i dont want to reset the region every milisecond DollorLua 235 — 6y

Answer this question