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

How do I make someone spawn as a different character?

Asked by 9 years ago

I can only think of making this much script for it since I know only basics and other things. I want the player to spawn as a different character like loleris, stickmasterluke, etc. This is the only thing I did so far:

local spawn =  game.Workspace.SpawnLocation

Sorry if I only know that ;(

1 answer

Log in to vote
1
Answered by 9 years ago
local template = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=%d"
local loleris = template:format(2312310)
local stickmasterluke = template:format(80254)

game.Players.PlayerAdded:connect(function(player)
  player.CharacterAppearance = stickmasterluke
end)
0
Thank you Seranok :) User#5689 -1 — 9y
Ad

Answer this question