|
| 08 Jan 2014 03:07 PM |
ok so this Minecraft Mob script wont work (i edited, not made) and i was wondering if you could fix it heres the script:
disasters = {"","","","",""} countdownTime = 100 disasterTime = 75 countdownMessage = "The next Minecraft~Enemy will occur in %s seconds." items = {} leaderboard = nil local w = game.Workspace:getChildren() for i=1,#w do if w[i].Name == "leaderboard" and w[i]:findFirstChild("running") ~= nil and w[i]:findFirstChild("points") ~= ni then leaderboard = w[i] end end for i=1,#disasters do local item = game.Workspace:findFirstChild(disasters[i]) if item ~= nil then item.Parent = nil table.insert(items, item) else print("Error! ", disasters[i], " was not found!") end end function chooseDisaster() return items[math.random(#items)] end function sethint(text) local hint = game.Workspace:findFirstChild("hint") if (hint ~= nil) then hint.Text = text else print("Hint does not exist, creating...") h = Instance.new("Hint") h.Name = "hint" h.Text = text h.Parent = game.Workspace end end function removeHint() hint = game.Workspace:findFirstChild("hint") if (hint ~= nil) then hint:remove() end end function countdown(time) sethint(string.format(countdownMessage, tostring(time))) while (time > 0) do wait(1) time = time - 1 sethint(string.format(countdownMessage, tostring(time))) end removeHint() return true end while true do countdown(countdownTime) if leaderboard ~= nil then leaderboard.points.Value = 30 leaderboard.running.Value = true end local m = chooseDisaster():clone() m.Parent = game.Workspace m:makeJoints() wait(disasterTime) m:remove()
if leaderboard ~= nil then leaderboard.points.Value = 0 leaderboard.running.Value = false end end |
|
|
| Report Abuse |
|
DarkComa
|
  |
| Joined: 01 Apr 2011 |
| Total Posts: 11679 |
|
|
| 08 Jan 2014 03:08 PM |
| No... please not another "BUILD TO SURVIVE MINECRAFT MOBS!" game. |
|
|
| Report Abuse |
|