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 |