|
| 10 Jan 2015 11:43 AM |
| How do make it where once you buy something from the shop you keep it forever. |
|
|
| Report Abuse |
|
|
ohno1112
|
  |
| Joined: 23 Mar 2013 |
| Total Posts: 833 |
|
| |
|
|
| 10 Jan 2015 11:45 AM |
| Search for DataStores on the wiki. |
|
|
| Report Abuse |
|
|
| |
|
|
| 10 Jan 2015 12:04 PM |
this is what I have
local wm = Instance.new("Model") wm.Name = "Weaps"
function give(weap, player)
for _, w in ipairs(player.Weaps:GetChildren()) do if w.Name == weap.Name then return end end
for _, w in ipairs(game.StarterPack:GetChildren()) do if w.Name == weap.Name then return end end
weap:clone().Parent = player.Weaps end
game.Players.ChildAdded:connect(function(p) wm:clone().Parent = p wait() p.Character.ChildAdded:connect(function(wep) if wep.className == "Tool" then give(wep, p) end end) p.Changed:connect(function(pr) if pr == "Character" then for _, w in ipairs(p.Weaps:GetChildren()) do w:clone().Parent = p.Backpack end p.Character.ChildAdded:connect(function(wep) if wep.className == "Tool" then give(wep, p) end end) end end) p.Backpack.ChildAdded:connect(function(h) if h.className == "HopperBin" then give(h, p) end end) end) |
|
|
| Report Abuse |
|
|