While building an obby in ROBLOX Studio, I have discovered I need a script to unFF people.
On player login remove the "ForceField" instance like this:
1 | game.Players.PlayerAdded:connect( function (p) |
2 | p.Character:connect( function (c) -- On character loaded |
3 | local ff = c:FindFirstChild( "ForceField" ) |
4 | while not ff do wait() end -- While it doesn't exists the game just waits for it to be loaded |
5 | ff:Destroy() |
6 | end ) |
7 | end ) |
You do not need to have a script to remove your FF. Inside the spawn, there are properties to set how long your FF is going to last, you can set that to zero and no ff.