of     1   

x07er
#143961820Tuesday, August 19, 2014 12:03 AM GMT

I need a script where you get 1 cash per second and you can spend it on in game GUI gun shop. Help?
x07er
#143961895Tuesday, August 19, 2014 12:05 AM GMT

B
Prehistoricman
#143962139Tuesday, August 19, 2014 12:08 AM GMT

This isn't basic. And this is the wrong forum.
x07er
#143962254Tuesday, August 19, 2014 12:10 AM GMT

My opinion it's basic. This is the scripting helpers forum
Prehistoricman
#143962347Tuesday, August 19, 2014 12:11 AM GMT

If it's so basic, then maybe you should work on it yourself, and come here if things go wrong. And creating the whole thing for you is not helping. Read this forum's description.
islandmaker2012
#143963105Tuesday, August 19, 2014 12:23 AM GMT

--localscript in startergui plr = game.Players.LocalPlayer if not plr:findFirstChild("Cash") then Instance.new("NumberValue",plr).Name = "Cash" end while wait(1) do plr.Cash.Value = plr.Cash.Value+1 end --and localscript in a guibutton plr = game.Players.LocalPlayer script.Parent.MouseButton1Click:connect(function() if plr.Cash.Value>NUMBER then plr.Cash.Value = plr.Cash.Value-NUMBER game.Lighting.WEAPONNAME:clone().Parent - plr end end) --edit to fit --lol
x07er
#143963193Tuesday, August 19, 2014 12:24 AM GMT

Thanks!

    of     1