Simple. You use the PlayerAdded
event. But fist, we must make a function that creates the force field.
1 | function CreateFF(player) |
2 | Instance.new( "ForceField" ,player.Character) |
Now that we've done that, all we need to do is connect()
the function to the PlayerAdded
event.
1 | function CreateFF(player) |
2 | Instance.new( "ForceField" ,player.Character) |
5 | game.Players.PlayerAdded:connect(CreateFF) |
Hope I helped!
~I went from 15 to 0 reputation for no apparent reason. If I helped you, please vote me up and accept my answer and we will both get points!~