of     1   

Nightlizard
#36783344Wednesday, November 10, 2010 2:06 AM GMT

function Added(player) local stats = Instance.new("IntValue") stats.Parent = player stats.Name = "leaderstats" local sq = Instance.new("IntValue") sq.Parent = stats sq.Name = "Square" sq.Value = 0 local ply = Instance.new("StringValue") ply.Parent = player ply.Value = "Nothing" ply.Name = "Player" local playing = Instance.new("BoolValue") playing.Parent = Player playing.Name = "Playing" playing.Value = false end game.Players.PlayerAdded:connect(Added) for some reason i dont get a boolvalue named playing
SilverRaptor
#36783689Wednesday, November 10, 2010 2:12 AM GMT

ply.Parent = player playing.Parent = Player See your problem?
Nightlizard
#36783743Wednesday, November 10, 2010 2:13 AM GMT

I captilized Player :P

    of     1