table.length roblox
local table = {"Hello","World", 1, 5}
print(#table)
--Result: 4
table.length roblox
local table = {"Hello","World", 1, 5}
print(#table)
--Result: 4
userinputservice
--[[
The UserInputService allows the developer to do a certain thing once a Key
is pressed.
UserInputService ONLY WORKS IN A CLIENT SCRIPT!!
--]]
local UIS = game:GetService("UserInputService") -- Get the Service
UIS.InputBegan:Connect(function(input, gameProcessedEvent)
--[[
The input is whatever key the player presses on their keyboard.
The gameProcessedEvent is true if the player is chatting, sitting down or doing
core Roblox things. In most cases you want to only run your script if it is false.
--]]
if not gameProcessedEvent and input.KeyCode == Enum.KeyCode.R then
print("The player pressed the "..input.KeyCode.Name.." Key!")
end
end)
UIS.InputEnded:Connect(function(input, gpe)
if not gpe and input.KeyCode == Enum.KeyCode.R then
print("The player stopped holding the "..input.KeyCode.Name.:" Key!")
end
end)
-- [[
NOTE !!!!!!!!!!
InputEnded MUST be used in a synchronized script.
--]]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us