How would I make a custom update sent from a object?

I want to make a custom update like
`
Object.OnCustomUpdate:Connect(function()

end)`

So you want a custom event? This isn’t possible without wrapping the instance, or using a bindable event or similar

1 Like

Idc how I just need the update please :slight_smile:

You have to use BindableEvents, you can’t give an Instance a custom event

example:

local event = Instance.new('BindableEvent')

event.Event:Connect(function(...)
    print(...)
end)

event:Fire(0, 2, "string")
1 Like