zL3ery
(zort)
#1
Hello, I have a problem with events. When I run the script you see below, I get the error you see in the photo. what is the solution to this?
local RS = game:GetService("ReplicatedStorage")
local ItemAldiE = RS:WaitForChild("ItemAldiEvent")
ItemAldiE.OnServerEvent.Connect(function(oyuncu, item)
end)
1 Like
iBuzzes
(Silly_Ryan)
#2
Hello
is :Connect() not .Connect()
1 Like
You’re should use :Connect() not .Connect.
local RS = game:GetService("ReplicatedStorage")
local ItemAldiE = RS:WaitForChild("ItemAldiEvent")
ItemAldiE.OnServerEvent:Connect(function(oyuncu, item)
end)
zL3ery
(zort)
#4
ohh, thank you. I did not see.