RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make npc sit on keypress"
-- local script local npc = game.Workspace.NPC local key = "e" game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode[key] then npc.Humanoid:Sit() end end)