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

How do I remove the effect of the character forcefield without removing the invulnerability?

Asked by 6 years ago

Just want a character to respawn without those annoying effects

2 answers

Log in to vote
0
Answered by 6 years ago

When a player respawns, set the Visible property of the Forcefield to false.

Ad
Log in to vote
0
Answered by 6 years ago

Just add a local script inside somewhere in the Player Scripts

local player = game.Players.LocalPlayer

repeat wait() until player.Character
game.Players.LocalPlayer.Character.Forcefield.Visible = false

Answer this question