how can i use functions? i tried doing this
function = local function(Give,x) instance.new("leaderstats") instance.parent = x end Give(game.Players.Player1,1)
you will should do
local function Give(x) local Instanc = instance.new("Folder") instanc.Name = "LeaderStats" instanc.Parent = x end Give(game.Players.Player1,1)