RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a chair 3D Model"
-- ScripterAI can only help with scripting as of now so here's a script for the chair system local part = script.Parent local function sit(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then player.Character.Humanoid.Sit = true end end part.Touched:Connect(sit)