#How to load a character with autoload character and streaming disabled

1 messages · Page 1 of 1 (latest)

pure crypt
#

using this?

woven lion
#

yes

pure crypt
#

It tells u how to use it

#

There's a little section below that shows an example

#

Also this is funny automod

#

Do you need the local players character or are u using it on server

#

On client you can do

#
local Players = game:GetService("Players")

local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()```
#

Then on server is pretty similar

#
local Players = game:GetService("Players")

local function OnPlayerAdded(player)
    local character = player.Character or player.CharacterAdded:Wait()
end

for player in Players:GetPlayers() do
    task.spawn(OnPlayerAdded, player)
end

Players.PlayerAdded:Connect(OnPlayerAdded)```
#

the for loop is just incase the player joins before the Players.PlayerAdded function exist

#

Else will do nothing

#

And only runs when server is made