"How to make cash giving part in roblox studio in lua" Code Answer's
You're definitely familiar with the best coding language Lua that developers use to develop their projects and they get all their queries like "How to make cash giving part in roblox studio in lua" answered properly. Developers are finding an appropriate answer about How to make cash giving part in roblox studio in lua related to the Lua coding language. By visiting this online portal developers get answers concerning Lua codes question like How to make cash giving part in roblox studio in lua. Enter your desired code related query in the search bar and get every piece of information about Lua code related question on How to make cash giving part in roblox studio in lua.
How to make cash giving part in roblox studio in lua

--Make a Part Name it Anything You Want
--Put This Script INSIDE The Part
--Put a Click Detector in
--Officially Made By Rigby#9052 on Discord :D
script.Parent.ClickDetector.MouseClick:Connect(function(player)
local PlayerPoints = player.leaderstats.Points --Chnage Points With Your Leaderstats Name
PlayerPoints.Value = PlayerPoints.Value + 5 --Chnage 5 With The Points You Wannt Give
--Ignore This Below One Only Use If You got 2 leaderstats
local PlayerExp = player.leaderstats.XP --Chnage Points With Your Leaderstats Name
PlayerExp.Value = PlayerExp.Value + 5 --Chnage 5 With The Points You Wannt Give
end) --Dm me On Discord if The Script Has Any Problems My Discord is Rigby#9052
How to make a cash giving script

game.Players.PlayerAdded:connect(function(p)
local stats = Instance.new("IntValue", p)
stats.Name = "leaderstats"
local money = Instance.new("IntValue", stats)
money.Name = "Cash"
money.Value = 100 --Starter Cash
while true do
wait(5) --Replace "5" With The Seconds You Want The Script To Give money after.
money.Value = money.Value + 100
end
end) --Script By Rigby#9052 on Discord
All those coders who are working on the Lua based application and are stuck on How to make cash giving part in roblox studio in lua can get a collection of related answers to their query. Programmers need to enter their query on How to make cash giving part in roblox studio in lua related to Lua code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about How to make cash giving part in roblox studio in lua for the programmers working on Lua code while coding their module. Coders are also allowed to rectify already present answers of How to make cash giving part in roblox studio in lua while working on the Lua language code. Developers can add up suggestions if they deem fit any other answer relating to "How to make cash giving part in roblox studio in lua". Visit this developer's friendly online web community, CodeProZone, and get your queries like How to make cash giving part in roblox studio in lua resolved professionally and stay updated to the latest Lua updates.