|
| 01 Dec 2013 12:38 AM |
Whats the error here? It is using some stuff I usually dont use like getchildren and functions like that.
--Nothing to see here
game.Players.PlayerAdded(connect:function(player) if game.Players.findFirstChild("Vampyroteuthiss") then print("Our Creator is here!") end else child = game.Workspace:GetChildren() then child:Destoy() print("All gone :3") end)
|
|
|
| Report Abuse |
|
|
|
| 01 Dec 2013 12:41 AM |
I found an error. New one below.
--Nothing to see here
game.Players.PlayerAdded:connect(function(player) if game.Players.findFirstChild("Vampyroteuthiss") then print("Our Creator is here!") else child = game.Workspace:GetChildren() child:Destoy() print("All gone :3") end end)
diggity dawg reportin 4 diggity dooty |
|
|
| Report Abuse |
|
|
|
| 01 Dec 2013 12:42 AM |
game.Players.PlayerAdded:connect(function(player) if player.Name == "Vampyroteuthiss" then print("Our Creator is here!") else child = game.Workspace:GetChildren() for i,v in pairs(child) do v:Destroy() end print("All gone :3") end end)
|
|
|
| Report Abuse |
|
|
|
| 01 Dec 2013 12:42 AM |
| game.Players:findFirstChild("Vampyroteuthiss") |
|
|
| Report Abuse |
|
|
|
| 01 Dec 2013 12:47 AM |
Thanks cody
diggity dawg reportin 4 diggity dooty |
|
|
| Report Abuse |
|
|