Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How could I do so that when someone buys something, they cannot buy it multiple times?

Asked by 4 years ago

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:

01local ReplicatedStorage = game:GetService("ReplicatedStorage")
02local remoteEvent = ReplicatedStorage:WaitForChild("BuyTool")
03 
04local function buyTool(player, tool)
05    if player.leaderstats["????"].Value >= tool.Price.Value then
06 
07        player.leaderstats["????"].Value = player.leaderstats["????"].Value - tool.Price.Value
08 
09        local giveTool = ReplicatedStorage.ShopItems[tool.Name]:Clone()
10        giveTool.Parent = player.Backpack
11 
12        local giveTool = ReplicatedStorage.ShopItems[tool.Name]:Clone()
13        giveTool.Parent = player.StarterGear
14    end
15end
16 
17remoteEvent.OnServerEvent:Connect(buyTool)
0
if (Player.StarterGrear:FindFirstChild(Tool.Name)) then return end Ziffixture 6913 — 4y
0
In what line do I put that? benjinanas 50 — 4y
0
???? benjinanas 50 — 4y
0
Nvm, Its at the beggining of the function, Thanks! benjinanas 50 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

Check if the player already has an item in their inventory,

1function buy(plr,tool)
2if player.StarterGear:FindFirstChild(tool.Name) == false then
3    --do your code here!
4end

Or something along those lines

0
Where are you calling your function? JesseSong 3916 — 4y
0
JesseSong, this is an answer to the question. Where I am calling the function is entirely up to the person who asked the qustion. pengalu200 65 — 4y
Ad

Answer this question