Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб How to make a coin collect system! в хорошем качестве

How to make a coin collect system! 7 дней назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



How to make a coin collect system!

In today's video I'm going to show you how to make a coin collecting system. leaderstats script: game.Players.PlayerAdded:Connect(function(plr) local leaderstats = Instance.new("Folder", plr) leaderstats.Name = "leaderstats" local Money = Instance.new("IntValue", leaderstats) Money.Name = "Money" -- set the name to anything you want! Money.Value = 0 -- set this to any value you want for player to begin with! end) Coin Collect script: debounce = false script.Parent.Touched:Connect(function() if debounce == false then debounce = true local plr = hit.Parent local player = plr:GetPlayerFromCharacter(plr) player.leaderstats.Money.Value += 100 -- set this to any value you want! script.Parent.Transparency = 1 wait(5) script.Parent.Transparency = 0 debounce = false end end) Hope you enjoyed the video! Subscribe and Like for more tutorials.

Comments