Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Player Point Script? [Unsolved]

Asked by 11 years ago

How would you change this script, so if you buy the Dev Product you get a Darkheart or Illumina?

001local plr = script.Parent.Parent.Parent
002local link = game:GetService("MarketplaceService")
003local y = 75 -- 300( the frame's Y Size offset) /# of buttons you want. -> 300/4 = 75
004local statn = "KOs" -- stat name here
005 
006local function create(instanc)
007    return function(object)
008        local button = Instance.new(instanc)
009        for i,v in pairs(object) do
010            button[i] = v
011        end
012        return button
013    end
014end
015 
View all 190 lines...

1 answer

Log in to vote
0
Answered by 10 years ago

Line 4, It should be local stat = "KOs" -- stat name here

Ad

Answer this question