Why does it print "ButtonClicked" before i have pressed the button?
1 | local function FirstOnClick() |
2 | print ( "ButtonClicked" ) |
3 | end |
4 |
5 | TeleportationButtons.ScreenGui.First.Activated:Connect(FirstOnClick()) |
When you want to use events you should pass a REFERENCE
to the function, by adding parenthesis you invoke the function instead of referencing it:
Wrong:
1 | TeleportationButtons.ScreenGui.First.Activated:Connect(FirstOnClick()) |
Correct:
1 | TeleportationButtons.ScreenGui.First.Activated:Connect(FirstOnClick) |
try out this:
1 | local function Print(Val) |
2 | print (Val) |
3 | end |
4 |
5 | TeleportationButtons.ScreenGui.First.Activated:Connect(Print( "Clicked" )) |