Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

roblox keyboard pressed

local uis = game:GetService("UserInputService")
uis.InputBegan:Connect(function(Key)
	if Key.KeyCode == Enum.KeyCode.Space then
		--Local player pressed SPACE
	end
end)
 
PREVIOUS NEXT
Tagged: #roblox #keyboard #pressed
ADD COMMENT
Topic
Name
1+6 =