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

How do I remove a forcefield from a player?

Asked by
Proflts 15
9 years ago

If i were to set a forcefields duration off of a spawn location to the maximum amount of time and then when the game begins I want them to fall onto a brick and it removes it. How would I do that? Please help it means the whole world to people who take time to. <3 to helpers c:

1 answer

Log in to vote
2
Answered by 9 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.
1game.Players.PlayerAdded:connect(function(plr) --detect when a player joins
2plr.CharacterAdded:connect(function(chr) --when a player respawns
3while chr:FindFirstChild("Force Field") ~= nil do wait() end --wait for forcefield to load
4local ff = chr:FindFirstChild("Force Field")--create a variable
5ff:remove()--remove forcefield
6end)
7end)
0
Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer. AmericanStripes 610 — 9y
0
o sorry i was just lazy GullibleChapV2 155 — 9y
Ad

Answer this question