Answers for "enum roblox"

1

enum roblox

local player = game.Players.LocalPlayer
local UserInputService = game:GetService("UserInputService")

UserInputService.InputBegan:Connect(function(input, gameProcessed)
	if gameProcessed then
		return end
			if input.KeyCode == Enum.KeyCode.F then
			print("Congrats you pressed the Key F")
		end
	end)
Posted by: Guest on January-20-2021

Browse Popular Code Answers by Language