Hello? Can you help me? I have posted something…
Please help me! I really need help!
What do you need help with? (30 charrss)
Bindableevent = game.ReplicatedStorage.TheEvent
function
Bindableevent:Fire
end
Taking a look at your code in a code block basically points out the issue. You are trying to make a “nameless” function. The Lua interppreter that is trying to understand your code thinks you are trying to define a function with the name “Bindableevent:Fireend”. The fix is to define a name before you list your parameters.
What BanTech showed in his post is exactly what is required and shows how to format functions.
1 Like