I need to try make this to load the tycoon parts from the ServerStorage instead of cloning them, but I don't really have an idea what to do, if anyone could guide me maybe, much appreciated.
------------------------------------------------------------------------------------------------------------------------- model = script.Parent.Parent.Parent.ITEMNAMEHERE -- Put Item Name There,Do Not Touch Other Stuff Below The Cost Price. Upgradecost = 0 -- Item Price ------------------------------------------------------------------------------------------------------------------------- upgradeStuff = model:clone() wait(1) model:remove() owner = script.Parent.Parent.Parent.OwnerName local ting = 0 function onTouched(hit) if ting == 0 then ting = 1 check = hit.Parent:FindFirstChild("Humanoid") if check ~= nil then if hit.Parent.Name == owner.Value then local user = game.Players:GetPlayerFromCharacter(hit.Parent) local stats = user:findFirstChild("leaderstats") if stats ~= nil then local cash = stats:findFirstChild("Cash") if cash.Value > (Upgradecost-1) then cash.Value = cash.Value - Upgradecost upgradeStuff.Parent = script.Parent.Parent.Parent script.Parent.Parent:remove() end end end end ting = 0 end end script.Parent.Touched:connect(onTouched)