Roblox characters
Treat a Player as the durable identity and each Character as a replaceable session with its own
references, connections, animation tracks, and cleanup. Targets Roblox's rolling platform APIs.
When to use
- Use for player-character lifecycle, Humanoid state/movement, rigs, animations, tools,
accessories, custom characters, death, or respawn defects.
- Use whenever code stores a Character/Humanoid/root reference longer than one spawn.
When not to use: general physics queries and constraints belong to roblox-physics; remote
trust belongs to roblox-networking; camera logic belongs to camera-systems.
Workflow
- Inspect the character contract. Check avatar settings,
StarterCharacter,
StarterCharacterScripts, CharacterAutoLoads, R6/R15 support, existing Animate/controller
scripts, tools, tags, collision groups, and server/client ownership.
- Separate scopes. Player-scope state survives respawn; character-scope state does not. Put
character connections/tracks/resources in one cleanup scope and destroy it on removal.
- Bind existing and future characters. Connect
CharacterAdded, then bind player.Character
if present. Do not assume event subscription alone sees a character that already spawned.
- Resolve required components defensively. Wait with a timeout where replication warrants it;
validate
Humanoid, root, Animator, and rig assumptions. Abort if that character is no longer
current before applying delayed work.
- Choose movement ownership. Use Humanoid movement for standard avatars; use
AssemblyLinearVelocity, BasePart:ApplyImpulse(), or a LinearVelocity/AlignPosition
constraint only for mechanics that need physical control. Keep gameplay
authority and network ownership implications explicit.
- Own animation lifecycle. Load via the rig's
Animator; store tracks/connections; use named
markers for gameplay timing only with server validation; stop/disconnect on character cleanup.
- Verify lifecycle stress. Spawn, die, reset, rapid-respawn, swap rig if supported, equip/drop
tools, leave during setup, and run with at least two players when character interactions matter.
Pattern: replaceable character scope
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local generation = 0
local connections: {RBXScriptConnection} = {}
local currentCharacter: Model? = nil
local function clearCharacter()
generation += 1
for _, connection in connections do connection:Disconnect() end
table.clear(connections)
currentCharacter = nil
end
local function bindCharacter(character: Model)
-- Guard BEFORE teardown. A stale invocation (see the CharacterAdded/defer race below) must not
-- clear a binding that is already current, or nothing ends up bound at all.
if player.Character ~= character then return end
clearCharacter()
currentCharacter = character
local thisGeneration = generation
local humanoid = character:WaitForChild("Humanoid", 10)
local root = character:WaitForChild("HumanoidRootPart", 10)
-- Re-check after the yields: a respawn during WaitForChild bumps generation and makes this call stale.
if not humanoid or not root or generation ~= thisGeneration then return end
table.insert(connections, humanoid.Died:Connect(function()
if generation ~= thisGeneration then return end
setCharacterUiEnabled(false)
end))
attachCurrentCharacterSystems(character, humanoid, root)
end
player.CharacterRemoving:Connect(function(character)
if currentCharacter == character then clearCharacter() end
end)
player.CharacterAdded:Connect(bindCharacter)
if player.Character then task.defer(bindCharacter, player.Character) end
Use the project's cleanup utility when one exists; do not introduce a new framework for three
connections. Server systems repeat this binding per Player and clear player-scope tables on
PlayerRemoving.
Pattern: animation through Animator and markers
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://1234567890"
local track = animator:LoadAnimation(animation)
local markerConnection = track:GetMarkerReachedSignal("Commit"):Connect(function(parameter)
playLocalSwingEffect(parameter) -- presentation; server still validates any hit
end)
track:Play(0.1)
-- On character teardown:
markerConnection:Disconnect()
track:Stop(0.1)
animation:Destroy()
For rigs without a Humanoid, use an AnimationController with an Animator. Do not use the
deprecated convenience path as a substitute for owning the actual Animator and track lifecycle.
Movement and rig rules
- Do not hardcode R15 limb names if R6 is supported. Prefer attachments, tags, or a rig-type
adapter; branch on
Humanoid.RigType only where topology materially differs.
HumanoidRootPart is the usual character assembly root, not a universal guarantee for every
custom model. Define the custom rig contract and validate it at spawn.
- Prefer
Humanoid:Move()/standard controls for ordinary avatar locomotion. Directly changing
AssemblyLinearVelocity is an instantaneous physical action; use forces/constraints or impulses
when continuous or instantaneous physics is the real intent.
- Never grant damage or movement authority because a client owns its character physics. Validate
cross-player consequences on the server.
- Tools move between Backpack and Character during equip; listen to lifecycle/state rather than
assuming one fixed parent. Modify accessories/appearance through current character APIs and
preserve an up-to-date applied
HumanoidDescription when editing avatar appearance.
Common failures
| Symptom |
Likely cause |
Remedy |
| works once, breaks after reset |
cached character/Humanoid/root |
rebuild per CharacterAdded; clear on removal |
| callbacks fire twice after deaths |
old character connections survived |
character-scoped cleanup and generation/current checks |
| delayed load edits wrong rig |
async work outlived spawn |
compare current Character/generation after every yield |
| animation visible only locally or not at all |
wrong Animator/context/asset ownership |
inspect rig Animator, execution side, permissions, and replication |
| hit marker awards impossible hit |
animation marker trusted as authority |
use marker for timing/presentation; server validates combat state |
| R6/custom rig errors |
R15 names assumed |
define rig contract; attachments/adapter; test each supported rig |
| tool disappears from system |
fixed Backpack/Character parent assumed |
handle equip/unequip ancestry and character replacement |
| custom force fights Humanoid |
two controllers own motion |
choose one movement authority per state and restore cleanly |
Resources
- Read
references/lifecycle-and-animation.md for server binding, death vs removal, rig and
animation verification, custom characters, and the lifecycle stress matrix.
Related skills
roblox-physics — forces, constraints, assemblies, collision, and network ownership.
roblox-networking — server validation of character actions and stale requests.
input-systems — action mapping and responsive movement intent.
camera-systems — camera behavior following replaceable characters.
Primary references
https://create.roblox.com/docs/characters
https://create.roblox.com/docs/animation/using
https://create.roblox.com/docs/characters/appearance
1---2name: roblox-characters3description: Build respawn-safe Roblox character systems around Players, CharacterAdded/CharacterRemoving, Humanoid, HumanoidRootPart, Animator, R6/R15 rigs, movement, animations and markers, death, tools, accessories, ownership, and custom characters. Use when character scripts break after respawn, cache stale Humanoids, control movement or velocity, load AnimationTracks, handle death, equip Tools, modify avatars, or support custom player rigs.4---5
6# Roblox characters
7
8Treat a `Player` as the durable identity and each `Character` as a replaceable session with its own
9references, connections, animation tracks, and cleanup. Targets Roblox's rolling platform APIs.
10
11## When to use
12
13- Use for player-character lifecycle, Humanoid state/movement, rigs, animations, tools,
14 accessories, custom characters, death, or respawn defects.
15- Use whenever code stores a Character/Humanoid/root reference longer than one spawn.
16
17**When not to use:** general physics queries and constraints belong to `roblox-physics`; remote
18trust belongs to `roblox-networking`; camera logic belongs to `camera-systems`.
19
20## Workflow
21
221. **Inspect the character contract.** Check avatar settings, `StarterCharacter`,
23 `StarterCharacterScripts`, `CharacterAutoLoads`, R6/R15 support, existing Animate/controller
24 scripts, tools, tags, collision groups, and server/client ownership.
252. **Separate scopes.** Player-scope state survives respawn; character-scope state does not. Put
26 character connections/tracks/resources in one cleanup scope and destroy it on removal.
273. **Bind existing and future characters.** Connect `CharacterAdded`, then bind `player.Character`
28 if present. Do not assume event subscription alone sees a character that already spawned.
294. **Resolve required components defensively.** Wait with a timeout where replication warrants it;
30 validate `Humanoid`, root, `Animator`, and rig assumptions. Abort if that character is no longer
31 current before applying delayed work.
325. **Choose movement ownership.** Use Humanoid movement for standard avatars; use
33 `AssemblyLinearVelocity`, `BasePart:ApplyImpulse()`, or a `LinearVelocity`/`AlignPosition`
34 constraint only for mechanics that need physical control. Keep gameplay
35 authority and network ownership implications explicit.
366. **Own animation lifecycle.** Load via the rig's `Animator`; store tracks/connections; use named
37 markers for gameplay timing only with server validation; stop/disconnect on character cleanup.
387. **Verify lifecycle stress.** Spawn, die, reset, rapid-respawn, swap rig if supported, equip/drop
39 tools, leave during setup, and run with at least two players when character interactions matter.
40
41## Pattern: replaceable character scope
42
43```lua
44local Players = game:GetService("Players")
45local player = Players.LocalPlayer
46local generation = 0
47local connections: {RBXScriptConnection} = {}
48local currentCharacter: Model? = nil
49
50local function clearCharacter()
51 generation += 1
52 for _, connection in connections do connection:Disconnect() end
53 table.clear(connections)
54 currentCharacter = nil
55end
56
57local function bindCharacter(character: Model)
58 -- Guard BEFORE teardown. A stale invocation (see the CharacterAdded/defer race below) must not
59 -- clear a binding that is already current, or nothing ends up bound at all.
60 if player.Character ~= character then return end
61 clearCharacter()
62 currentCharacter = character
63 local thisGeneration = generation
64 local humanoid = character:WaitForChild("Humanoid", 10)
65 local root = character:WaitForChild("HumanoidRootPart", 10)
66 -- Re-check after the yields: a respawn during WaitForChild bumps generation and makes this call stale.
67 if not humanoid or not root or generation ~= thisGeneration then return end
68
69 table.insert(connections, humanoid.Died:Connect(function()
70 if generation ~= thisGeneration then return end
71 setCharacterUiEnabled(false)
72 end))
73 attachCurrentCharacterSystems(character, humanoid, root)
74end
75
76player.CharacterRemoving:Connect(function(character)
77 if currentCharacter == character then clearCharacter() end
78end)
79player.CharacterAdded:Connect(bindCharacter)
80if player.Character then task.defer(bindCharacter, player.Character) end
81```
82
83Use the project's cleanup utility when one exists; do not introduce a new framework for three
84connections. Server systems repeat this binding per `Player` and clear player-scope tables on
85`PlayerRemoving`.
86
87## Pattern: animation through Animator and markers
88
89```lua
90local animation = Instance.new("Animation")
91animation.AnimationId = "rbxassetid://1234567890"
92local track = animator:LoadAnimation(animation)
93local markerConnection = track:GetMarkerReachedSignal("Commit"):Connect(function(parameter)
94 playLocalSwingEffect(parameter) -- presentation; server still validates any hit
95end)
96
97track:Play(0.1)
98-- On character teardown:
99markerConnection:Disconnect()
100track:Stop(0.1)
101animation:Destroy()
102```
103
104For rigs without a `Humanoid`, use an `AnimationController` with an `Animator`. Do not use the
105deprecated convenience path as a substitute for owning the actual Animator and track lifecycle.
106
107## Movement and rig rules
108
109- Do not hardcode R15 limb names if R6 is supported. Prefer attachments, tags, or a rig-type
110 adapter; branch on `Humanoid.RigType` only where topology materially differs.
111- `HumanoidRootPart` is the usual character assembly root, not a universal guarantee for every
112 custom model. Define the custom rig contract and validate it at spawn.
113- Prefer `Humanoid:Move()`/standard controls for ordinary avatar locomotion. Directly changing
114 `AssemblyLinearVelocity` is an instantaneous physical action; use forces/constraints or impulses
115 when continuous or instantaneous physics is the real intent.
116- Never grant damage or movement authority because a client owns its character physics. Validate
117 cross-player consequences on the server.
118- Tools move between Backpack and Character during equip; listen to lifecycle/state rather than
119 assuming one fixed parent. Modify accessories/appearance through current character APIs and
120 preserve an up-to-date applied `HumanoidDescription` when editing avatar appearance.
121
122## Common failures
123
124| Symptom | Likely cause | Remedy |
125|---|---|---|
126| works once, breaks after reset | cached character/Humanoid/root | rebuild per `CharacterAdded`; clear on removal |
127| callbacks fire twice after deaths | old character connections survived | character-scoped cleanup and generation/current checks |
128| delayed load edits wrong rig | async work outlived spawn | compare current Character/generation after every yield |
129| animation visible only locally or not at all | wrong Animator/context/asset ownership | inspect rig Animator, execution side, permissions, and replication |
130| hit marker awards impossible hit | animation marker trusted as authority | use marker for timing/presentation; server validates combat state |
131| R6/custom rig errors | R15 names assumed | define rig contract; attachments/adapter; test each supported rig |
132| tool disappears from system | fixed Backpack/Character parent assumed | handle equip/unequip ancestry and character replacement |
133| custom force fights Humanoid | two controllers own motion | choose one movement authority per state and restore cleanly |
134
135## Resources
136
137- Read `references/lifecycle-and-animation.md` for server binding, death vs removal, rig and
138 animation verification, custom characters, and the lifecycle stress matrix.
139
140## Related skills
141
142- `roblox-physics` — forces, constraints, assemblies, collision, and network ownership.
143- `roblox-networking` — server validation of character actions and stale requests.
144- `input-systems` — action mapping and responsive movement intent.
145- `camera-systems` — camera behavior following replaceable characters.
146
147## Primary references
148
149- `https://create.roblox.com/docs/characters`
150- `https://create.roblox.com/docs/animation/using`
151- `https://create.roblox.com/docs/characters/appearance`