RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a function when i press e it runs and it says hello world"
-- local script local player = game.Players.LocalPlayer local function sayHello() print("Hello World!") end player.KeyDown:Connect(function(key) if key == "e" then sayHello() end end)