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

How do i make when players join they get ff forever?

Asked by
viison -5
10 years ago

Like the title said: How do i make pepole have ff when they join forever?

2 answers

Log in to vote
1
Answered by 10 years ago

Place this in a normal script in the workspace.

game.Players.PlayerAdded:connect(function(p)
    p.CharacterAdded:connect(function(c)
        Instance.new("ForceField", c)
    end)
end)

Explanation:

When the player joins the game, it waits for the players character to be added. Once it is added it adds a ForceField object to the player's character.

Ad
Log in to vote
0
Answered by
Bebee2 195
10 years ago

You can also set the Duration property of a SpawnLocation to a number obscurely high. Scrptury's way is suggested, though.

Answer this question