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

How do i make a player morph on spawn without a morph button?

Asked by 10 years ago

I have a game, and i want the players who join to automatically morph into something. I have a morph in the game, but it messes everything up and i want the morph to be automatically equipped on spawn.

3 answers

Log in to vote
0
Answered by 10 years ago

Try you know, making a morph into a spawn, or C-frame a morph into the spawn? I cant script, but these solutions are much easier.

0
Thank you, i moved the morph person and made the morph button invisible. tennisdude10 5 — 10y
Ad
Log in to vote
0
Answered by 10 years ago

You can use the PlayerAdded() event in a function and put the code you use for the button into the function. Here is the Wiki page for PlayerAdded.

Log in to vote
0
Answered by
dreamy67 135
10 years ago

Use

game.Players.PlayerAdded:connect(function(players)
-- Stuff here
end)

Answer this question