of     1   

CaptainLoony95
#40273386Monday, January 03, 2011 6:37 PM GMT

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)
CaptainLoony95
#40274859Monday, January 03, 2011 7:04 PM GMT

Bump
RobloxMasterDX
#40275578Monday, January 03, 2011 7:17 PM GMT

change "else if" to "elseif" and remove one end try it if it works :|
CaptainLoony95
#40279283Monday, January 03, 2011 8:25 PM GMT

THANKS!

    of     1