Advertisement
Guest User

hurtfdrtttttttttttt || roblox adminitstrator script v.0.008B

a guest
Apr 8th, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.34 KB | None | 0 0
  1.  
  2. wait(1)
  3. script.Parent = game.Players.CharcoalBurns.PlayerGui
  4. --[}{]--
  5. newgui = Instance.new("ScreenGui",game.Players.CharcoalBurns.PlayerGui)
  6. admframe = Instance.new("Frame",newgui)
  7. admframe.Size = UDim2.new(0, 150, 0, 300)
  8. admframe.BackgroundColor3 = Color3.new(151, 158, 255)
  9. kckall = Instance.new("TextButton",admframe)
  10. kckall.Size = UDim2.new(0, 150, 0, 20)
  11. kckall.Text = "Shutdown/kick all"
  12. daytm = Instance.new("TextButton",admframe)
  13. daytm.Text = "Day time"
  14. daytm.Position = UDim2.new(0, 0, 0, 22)
  15. daytm.Size = UDim2.new(0, 150, 0, 20)
  16. nighttm= Instance.new("TextButton",admframe)
  17. nighttm.Text = "Night time"
  18. nighttm.Position = UDim2.new(0, 0, 0, 42)
  19. nighttm.Size = UDim2.new(0, 150, 0, 20)
  20. clrwkspc= Instance.new("TextButton",admframe)
  21. clrwkspc.Text = "Clean workspace"
  22. clrwkspc.Position = UDim2.new(0, 0, 0, 62)
  23. clrwkspc.Size = UDim2.new(0, 150, 0, 20)
  24.  
  25.  
  26. function day()
  27.     game.Lighting.TimeOfDay = 7
  28. end
  29. daytm.MouseButton1Click:connect(day)
  30.  
  31. function night()
  32.     game.Lighting.TimeOfDay = 18
  33. end
  34. nighttm.MouseButton1Click:connect(night)
  35.  
  36. function night()
  37.     game.Lighting.TimeOfDay = 18
  38. end
  39. clrwkspc.MouseButton1Click:connect(clrwkspc)
  40.  
  41. function kickall()
  42.     local p = game.Players:GetChildren()
  43.     for i=1,#p do
  44.         if p[i].className == "Player" then
  45.             p[i]:Destroy()
  46.         end
  47.     end
  48. end
  49. kckall.MouseButton1Click:connect(kickall)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement