Can someone please tell me why this function is not connecting? I get no errors in output and no message in output either. I have to have the game.Players.PlayerAdded for something i'm going to do with it later but i've narrowed it down to function thats not working. Thanks!
game.Players.PlayerAdded:connect(function(player) function Intermission() print("Your in the Intermission Function") end game.Players.PlayerAdded:connect(Intermission) end)
You've mixed it up. Use these tactics.
Make the function standalone.
function Intermission() print("Your in the Intermission Function") end game.Players.PlayerAdded:connect(Intermission)
Use a function without needing a name.
game.Players.PlayerAdded:connect(function() print("Your in the Intermission Function") end)