How could I do so that when someone buys something, they cannot buy it multiple times?
I have a shop and it works fine but I want to change that when someone buys a tool, they cannot buy that tool again as long as they have that tool.
Here is the script:
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local remoteEvent = ReplicatedStorage:WaitForChild( "BuyTool" ) |
04 | local function buyTool(player, tool) |
05 | if player.leaderstats [ "????" ] .Value > = tool.Price.Value then |
07 | player.leaderstats [ "????" ] .Value = player.leaderstats [ "????" ] .Value - tool.Price.Value |
09 | local giveTool = ReplicatedStorage.ShopItems [ tool.Name ] :Clone() |
10 | giveTool.Parent = player.Backpack |
12 | local giveTool = ReplicatedStorage.ShopItems [ tool.Name ] :Clone() |
13 | giveTool.Parent = player.StarterGear |
17 | remoteEvent.OnServerEvent:Connect(buyTool) |