I Am Going To Do A Keyboard Commands Set. How Should I Do It? The Key Is "R".
local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.KeyDown:connect(function(key) if key == "r" then --play animation end end)