DevOperation
DevOperation
  • 6
  • 211
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.
มุมมอง: 51

วีดีโอ

How to make a Harvesting Crops system in roblox studio!
มุมมอง 862 หลายเดือนก่อน
Today I'm showcasing my script that I made for a harvesting crop system, hope you like it! if you see this please teach me how to get better video quality. Roblox Profile: hr7ss
How to make Cash Gui in roblox studio!
มุมมอง 4310 หลายเดือนก่อน
Roblox Profile: RobertsFr1ends Roblox Group: Bloxy Teams In todays video i made a roblox studio tutorial on how to make your cash show on the GUI not only on leaderboard!
How to make leaderstats in roblox studio!
มุมมอง 610 หลายเดือนก่อน
How to make leaderstats in roblox studio!
How to make a part invisible on touch!
มุมมอง 1110 หลายเดือนก่อน
Hello! I made a script for your game if you will ever use it i appreciate you! Like and Subscribe to support my Work! im trying.
How to make a Kill Part in Roblox Studio!
มุมมอง 1410 หลายเดือนก่อน
Hello! Im SwiBloxDev Other account of SwiBlox And i want to begin a Roblox Studio Tutorials, please dont blame me if something doesnt work because i just started learning stuff! so comment if something is wrong or suggest!

ความคิดเห็น

  • @typhoongt
    @typhoongt 2 หลายเดือนก่อน

    this is stupidly underrated

  • @Dev0perat1on
    @Dev0perat1on 2 หลายเดือนก่อน

    This script will work unless you have an actual tool equipped but don't worry I'm currently trying to fix it, when I'm done ill post a video!