RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a SellPad that sells Food add comment where to put this code in"
-- This code should be placed in a LocalScript in the ReplicatedStorage service. local ReplicatedStorage = game:GetService("ReplicatedStorage") local SellPad = ReplicatedStorage.SellPad SellPad.OnServerEvent:Connect(function(player, foodType) local food = game.ServerStorage.Food[foodType] local cost = food.Cost.Value if player.leaderstats.Money.Value >= cost then player.leaderstats.Money.Value = player.leaderstats.Money.Value - cost local foodClone = food:Clone() foodClone.Parent = player.Backpack end end)