Advertisement
Guest User

Tiny Menu Alpha

a guest
Jul 1st, 2018
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local Frame = Instance.new("Frame")
  7. local MenuName = Instance.new("TextBox")
  8. local Credit = Instance.new("TextBox")
  9. local KillGui = Instance.new("TextButton")
  10. local LagGui = Instance.new("TextButton")
  11. local KickAll = Instance.new("TextButton")
  12. local KillAll = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. Frame.Parent = game.StarterGui["Tiny Menu Alpha"]
  17. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  18. Frame.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  19. Frame.BorderSizePixel = 3
  20. Frame.Position = UDim2.new(0, 1003, 0, 302)
  21. Frame.Size = UDim2.new(0, 247, 0, 310)
  22.  
  23. MenuName.Name = "Menu Name"
  24. MenuName.Parent = Frame
  25. MenuName.BackgroundColor3 = Color3.new(1, 1, 0)
  26. MenuName.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  27. MenuName.BorderSizePixel = 3
  28. MenuName.Size = UDim2.new(0, 247, 0, 54)
  29. MenuName.Font = Enum.Font.SourceSans
  30. MenuName.Text = "Tiny Menu Alpha"
  31. MenuName.TextColor3 = Color3.new(0, 0, 0)
  32. MenuName.TextSize = 14
  33.  
  34. Credit.Name = "Credit"
  35. Credit.Parent = Frame
  36. Credit.BackgroundColor3 = Color3.new(1, 1, 0)
  37. Credit.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  38. Credit.BorderSizePixel = 3
  39. Credit.Position = UDim2.new(0, 0, 0, 257)
  40. Credit.Size = UDim2.new(0, 247, 0, 54)
  41. Credit.Font = Enum.Font.SourceSans
  42. Credit.Text = "Made by @beastmode0945 on twitter"
  43. Credit.TextColor3 = Color3.new(0, 0, 0)
  44. Credit.TextSize = 14
  45.  
  46. KillGui.Name = "Kill Gui"
  47. KillGui.Parent = Frame
  48. KillGui.BackgroundColor3 = Color3.new(1, 1, 0)
  49. KillGui.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  50. KillGui.BorderSizePixel = 3
  51. KillGui.Position = UDim2.new(0, 0, 0, 57)
  52. KillGui.Size = UDim2.new(0, 247, 0, 50)
  53. KillGui.Font = Enum.Font.SourceSans
  54. KillGui.Text = "Kill Gui"
  55. KillGui.TextColor3 = Color3.new(0, 0, 0)
  56. KillGui.TextSize = 14
  57.  
  58. LagGui.Name = "Lag Gui"
  59. LagGui.Parent = Frame
  60. LagGui.BackgroundColor3 = Color3.new(1, 1, 0)
  61. LagGui.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  62. LagGui.BorderSizePixel = 3
  63. LagGui.Position = UDim2.new(0, 0, 0, 107)
  64. LagGui.Size = UDim2.new(0, 247, 0, 50)
  65. LagGui.Font = Enum.Font.SourceSans
  66. LagGui.Text = "Lag Gui"
  67. LagGui.TextColor3 = Color3.new(0, 0, 0)
  68. LagGui.TextSize = 14
  69.  
  70. KickAll.Name = "Kick All"
  71. KickAll.Parent = Frame
  72. KickAll.BackgroundColor3 = Color3.new(1, 1, 0)
  73. KickAll.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  74. KickAll.BorderSizePixel = 3
  75. KickAll.Position = UDim2.new(0, 0, 0, 157)
  76. KickAll.Size = UDim2.new(0, 247, 0, 50)
  77. KickAll.Font = Enum.Font.SourceSans
  78. KickAll.Text = "Kick All"
  79. KickAll.TextColor3 = Color3.new(0, 0, 0)
  80. KickAll.TextSize = 14
  81.  
  82. KillAll.Name = "Kill All"
  83. KillAll.Parent = Frame
  84. KillAll.BackgroundColor3 = Color3.new(1, 1, 0)
  85. KillAll.BorderColor3 = Color3.new(0.854902, 0, 0.0117647)
  86. KillAll.BorderSizePixel = 3
  87. KillAll.Position = UDim2.new(0, 0, 0, 207)
  88. KillAll.Size = UDim2.new(0, 247, 0, 50)
  89. KillAll.Font = Enum.Font.SourceSans
  90. KillAll.Text = "Kill All"
  91. KillAll.TextColor3 = Color3.new(0, 0, 0)
  92. KillAll.TextSize = 14
  93.  
  94. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement