It says "Running Script" but the things won't create in the people.
function onEntered(Player)
if game.Players:findFirstChild(Player.Name):findFirstChild("Status") == nil then
local Status = Instance.new("Configuration")
Status.Name = "Status"
Status.Parent = game.Players:findFirstChild(Player.Name)
local IsPlaying = Instance.new("BoolValue")
IsPlaying.Name = "IsPlaying"
IsPlaying.Parent = Status
IsPlaying.Value = false
local KOs = Instance.new("NumberValue")
KOs.Name = "KOs"
KOs.Parent = Status
KOs.Value = 0
else if game.Players:findFirstChild(Player.Name):findFirstChild("Status") ~= nil then
print("Already got Status")
end
end
end
game.Players.ChildAdded:connect(onEntered) |