@yourobloxteacher: Replying to @Прайм торохтуна Tutorial how to make a shop in Roblox Studio. #roblox #tutorial #robloxstudio #creatorsearchinsight #2025
Не забудьте установить AnchorPoint каждого ItemButton на 0.5, 0.5
2025-11-09 14:59:38
0
rokermadi :
То что мне надо👍
2025-12-07 20:28:12
1
tuleni :
Да как их разместить пожалуйста помогите🙏
2025-11-25 14:34:57
1
сузуя рей :
можно же ViewPortFrame для отображения модельки в гуи
2025-11-30 09:54:45
1
thetzer :
блять почему у меня все по жопе идет , нехуя не закрываеца
2026-07-23 14:22:35
0
Larovorov :
Подписка
2025-11-19 10:51:24
1
Profesius Genius :
а какой скирпт писать?
2025-12-01 12:39:17
1
Tutor Roblox :
ServerScriptService
local replicatedStorage = game:GetService("ReplicatedStorage")
local buyEvent = replicatedStorage:WaitForChild("BuyItemEvent")
local boughtEvent = Instance.new("RemoteEvent")
boughtEvent.Name = "BoughtItemEvent"
boughtEvent.Parent = replicatedStorage
local purchased = {}
buyEvent.OnServerEvent:Connect(function(player, itemName, price)
local leaderstats = player:FindFirstChild("leaderstats")
if not leaderstats or not leaderstats:FindFirstChild("Money") then return end
if not purchased[player.UserId] then
purchased[player.UserId] = {}
end
if purchased[player.UserId][itemName] then
return
end
local money = leaderstats.Money
if money.Value >= price then
money.Value = money.Value - price
local item = replicatedStorage:FindFirstChild(itemName)
if item then
local clone = item:Clone()
clone.Parent = player.Backpack
purchased[player.UserId][itemName] = true
boughtEvent:FireClient(player, itemName)
end
end
end)
2025-11-09 15:00:38
1
To see more videos from user @yourobloxteacher, please go to the Tikwm
homepage.