Advertisement
Migas3456

Killstrikebrody's ADMIN Menu(not made by me)

Oct 7th, 2017
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8. -- Properties
  9.  
  10. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  14. Frame.BorderColor3 = Color3.new(1, 0, 0)
  15. Frame.BorderSizePixel = 10
  16. Frame.Position = UDim2.new(0, 36, 0, 119)
  17. Frame.Size = UDim2.new(0, 257, 0, 301)
  18.  
  19. TextLabel.Parent = Frame
  20. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  21. TextLabel.BorderColor3 = Color3.new(1, 0, 0)
  22. TextLabel.BorderSizePixel = 10
  23. TextLabel.Size = UDim2.new(0, 257, 0, 22)
  24. TextLabel.Font = Enum.Font.Code
  25. TextLabel.FontSize = Enum.FontSize.Size14
  26. TextLabel.Text = "Killstrikebrody's ADMIN Menu"
  27. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  28. TextLabel.TextScaled = true
  29. TextLabel.TextSize = 14
  30. TextLabel.TextWrapped = true
  31.  
  32. TextButton.Parent = Frame
  33. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  34. TextButton.BorderColor3 = Color3.new(1, 0, 0)
  35. TextButton.BorderSizePixel = 10
  36. TextButton.Position = UDim2.new(0, 0, 0, 100)
  37. TextButton.Size = UDim2.new(0, 62, 0, 22)
  38. TextButton.Font = Enum.Font.SourceSans
  39. TextButton.FontSize = Enum.FontSize.Size14
  40. TextButton.Text = "MSG"
  41. TextButton.TextColor3 = Color3.new(1, 0, 0)
  42. TextButton.TextScaled = true
  43. TextButton.TextSize = 14
  44. TextButton.TextWrapped = true
  45.  
  46. TextButton.MouseButton1Down:connect(function()
  47. function enter(player)
  48. pcall(function()
  49. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  50. Text = "[OWNER OF GUI] killstrikebrody]: " ..game.Players.LocalPlayer.Name.. " Hello! This is a new gui. ";
  51. Color = Color3.new(0,128,0);
  52. Font = Enum.Font.SourceSansBold;
  53. FontSize = Enum.FontSize.Size24;
  54. })
  55. end)
  56.  
  57. game.Players.ChildAdded:connect(function(player)
  58. if not pcall(function()
  59. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  60. Text = "[OWNER OF GUI] killstrikebrody]: " ..player.Name.. " Hello! This is a new gui. https://pastebin.com/raw/AK0GyUFY";
  61. Color = Color3.new(0,128,0);
  62. Font = Enum.Font.SourceSansBold;
  63. FontSize = Enum.FontSize.Size24;
  64. })
  65. end) then
  66. print("Error")
  67. end
  68. end)
  69.  
  70. game.Players.ChildRemoved:connect(function(player)
  71. if not pcall (function()
  72. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  73. Text = "[Server]: " ..player.Name.. " Has left the server!";
  74. Color = Color3.new(255,0,0);
  75. Font = Enum.Font.SourceSansBold;
  76. FontSize = Enum.FontSize.Size24;
  77. })
  78. end) then
  79. print("Error")
  80. end
  81. end)
  82. end
  83. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement