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:
01 | head.Touched:connect( function (hit) |
02 | if hit:FindFirstChild( '_Water' ) then |
03 | print ( 'Hit By Water!' ) |
06 | WaterState = hit.State.Value |
07 | local bodyforce = Instance.new( "BodyForce" ) |
08 | bodyforce.Parent = head.Parent.HumanoidRootPart |
09 | bodyforce.Name = 'BodyForce' |
10 | bodyforce.Force = Vector 3. new( 0 , 20000 , 0 ) |
13 | head.TouchEnded:connect( function (hit) |
14 | if hit:FindFirstChild( '_Water' ) then |
15 | if head.Position.Y > hit.Position.Y then |
19 | head.Parent.HumanoidRootPart.BodyForce:Destroy() |
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.