|
| 24 Mar 2012 01:10 PM |
I really need a shop for my Island battle game,and the ones i have tryed dont work. Because i can't script i need help. I changed a value to KOs but i dont think it did anything |
|
|
| Report Abuse |
|
|
|
| 24 Mar 2012 01:15 PM |
| Use the roblox wiki to learn how to script. ALos we dont just give out scripts, we need to see an honest attempt from you first. |
|
|
| Report Abuse |
|
|
|
| 24 Mar 2012 01:18 PM |
I did,i tryed to change something called gold to KOs and some rvaribale thing to linkedleaderboard and then i put in what it should give like Give.charcter. Illumina |
|
|
| Report Abuse |
|
|
crazyzee
|
  |
| Joined: 24 Aug 2010 |
| Total Posts: 275 |
|
|
| 24 Mar 2012 01:34 PM |
no, wat you do is put somthing in lightning and then there is one pert for it to summon in your hands.
local player = script.Parent.Parent.Parent.Parent.Parent local price = 0 -- and change this to anything you want local tool = game.Lighting:findFirstChild("Illumina")
function picture() script.Parent.Parent.Picture.Image = "http://www.roblox.com/ShotGun-item?id=6662582" script.Parent.Parent.Price.Text = "0 KOs" -- change this to how many kos you want end
function buy() wait(0.1) local money = player.leaderstats.KOs if money.Value >= price then local a = tool:clone() a.Parent = player.Backpack else end end
script.Parent.MouseButton1Down:connect(buy) script.Parent.MouseEnter:connect(picture)
|
|
|
| Report Abuse |
|
|