local function GetApi(API)
local APIEvent = game.ReplicatedStorage:WaitForChild("Send/ReciveAPIS")
APIEvent:FireServer(API)
APIEvent.OnClientEvent:Connect(function(DataTable)
for i, v in DataTable do
PrintTo("Normal", i.." = "..v)
end
end)
end
Each time i call this function it does the right thing, but then when i call it again it does it twice, then 4 times, the 8 times…
I had this issue before but i cant get it to work in this situation