i have a very simple server script (in ServerScriptService):
local replicatedStorage = game:GetService("ReplicatedStorage")
local remoteEvent = replicatedStorage.LobbyItems:WaitForChild("startArenaEvent")
local function startArena()
print("Starting arena")
end
remoteEvent.OnServerEvent:Connect(startArena)```
however neither "Server script started" or "Starting arena" prints, anyone know why?