RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when i press I on my keyboard i will sit"
-- local script local player = game.Players.LocalPlayer game:GetService("UserInputService").InputBegan:Connect(function(inputObject) if inputObject.KeyCode == Enum.KeyCode.I then player.Character:WaitForChild("Humanoid"):Sit() end end)