I want to make a custom update like
`
Object.OnCustomUpdate:Connect(function()
end)`
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
Idc how I just need the update please ![]()
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")