Oh yes, I forgot to mention to use pcalls because everything in DataStores requires them.
Capitalising :connect() is not necessary, but it can make the code looking more elegant. In my preferences I usually do the capitalised one over the all lowercase style.
local Players = game:GetService("Players")
local replicatedStorage = game:GetService("ReplicatedStorage")
local datastore = game:GetService("DataStoreService")
local dsl = datastore:GetDataStore("StageSaveSystem")
local DebounceTable = {}
Players.PlayerAdded:Connect(function(plr)
DebounceTable[plr] = {"debounce" = false}
local folder =Instance.new("Folder", plr)
folder.Name = "leaderstats"
local Cash = Instance.new("IntValue", folder)
Cash.Name = "Cash"
Cash.Value = dsl:GetAsync(plr.UserId) or 200
local success, errorMessage = pcall(function()
dsl:SetAsync(plr.UserId, Cash.Value)
end)
if success then
Cash.Changed:Connect(function() -- oof'd :Connect()
local success, errorMessage = pcall(function()
dsl:SetAsync(plr.UserId, Cash.Value)
end)
if not success then
warn(errorMessage)
end
end)
else
warn(errorMessage)
end
end)
Players.PlayerRemoving:Connect(function(plr)
DebounceTable[plr] = nil
end)
replicatedStorage:WaitForChild("CheckPrice").OnServerInvoke = function(player,NameOfCar)
return game.ServerStorage.Cars:FindFirstChild(NameOfCar).Price.Value
end
replicatedStorage:WaitForChild("SpawnCar").OnServerEvent:Connect(function(player,NameOfCar)
if DebounceTable[player]["debounce"] then
return -- if it's true, it won't process the cloning
end
DebounceTable[player]["debounce"] = true
local car = game.ServerStorage.Cars:FindFirstChild(NameOfCar):Clone()
car:SetPrimaryPartCFrame(player.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,15))
car.Parent = workspace
car:MakeJoints()
car.Name = (player.Name .. "'s " .. NameOfCar)
wait(5) -- Cooldown
DebounceTable[player]["debounce"] = false
end)
Count the dots.
@uJordy Hm, I thought they did⌠but apparently I canât find the documentation again.
it works thanks, but is there a way you can destroy the old car when you spawn a new one or would that be too difficult I know you have to use something like
local oldcar = script.Parent.car
oldcar:destroy()
but yea the debounce works thanks
plus destroying the old car will reduce memory or lag because the old model is gone and you have your new one
You could assign the car to the table too, and then using the table again to acquire the old model and then destroying it.
replicatedStorage:WaitForChild("SpawnCar").OnServerEvent:Connect(function(player,NameOfCar)
if DebounceTable[player]["debounce"] then
return -- if it's true, it won't process the cloning
end
DebounceTable[player]["debounce"] = true
local car = game.ServerStorage.Cars:FindFirstChild(NameOfCar):Clone()
car:SetPrimaryPartCFrame(player.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,15))
car.Parent = workspace
car:MakeJoints()
car.Name = (player.Name .. "'s " .. NameOfCar)
if DebounceTable[plr]["Car"] ~= nil then
DebounceTable[plr]["Car"].Parent = nil
end
DebounceTable[plr]["Car"] = car
wait(5) -- Cooldown
DebounceTable[player]["debounce"] = false
end)
Side note: You can use another table instead or rename it to something appropriate.
Honestly you should probably check is the vehicle is still in the spawn place as you will still get issues if a vehicle is still there during the spawning.
Maybe you could add some sort of force to push out the vehicle from the spawn so that others can get spawn without delay from an AFK player. (Maybe add some collision groups so that the vehicle can not re-enter?)