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 ;(
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)