Advertisement
ultimate55

Roblox Server Timer (not local)

Feb 4th, 2013
818
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. --[[ This creates a timer which counts how much seconds the server has been running. -ulti55                                                                                                         ]]
  2. local a = Instance.new("NumberValue")
  3. a.Name = "TimE"
  4. a.Parent = game.Workspace
  5. server = game.NetworkServer
  6. while true do
  7. connected = "Connected"
  8. a = game.Workspace.TimE
  9. a.Value = a.Value +1
  10. local m = Instance.new("Hint")
  11. m.Parent = game.Workspace
  12. m.Text = "Sever Time: "..a.Value.." | Connection Status: "..connected.." | Server Name: "..server.Name.." "
  13. wait(1)
  14. m:Remove()
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement