Advertisement
Guest User

Untitled

a guest
Mar 13th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local loqtsgui = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local Title = Instance.new("Frame")
  5. local badgui = Instance.new("TextLabel")
  6. local Tornado = Instance.new("TextButton")
  7. local Headbutt = Instance.new("TextButton")
  8. local Bypass = Instance.new("TextButton")
  9. local FastRoll = Instance.new("TextButton")
  10. local Uzi = Instance.new("TextButton")
  11. local Chicken = Instance.new("TextButton")
  12. local Nunya = Instance.new("TextLabel")
  13. local ba = Instance.new("TextLabel")
  14. local ra = Instance.new("TextLabel")
  15. local na = Instance.new("TextLabel")
  16. local Exit = Instance.new("TextButton")
  17.  
  18. loqtsgui.Name = "loqtsgui"
  19. loqtsgui.Parent = game.CoreGui
  20.  
  21. Main.Name = "Main"
  22. Main.Parent = loqtsgui
  23. Main.Active = true
  24. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  25. Main.BackgroundTransparency = 0.5
  26. Main.Draggable = true
  27. Main.Position = UDim2.new(0, 48, 0, 129)
  28. Main.Size = UDim2.new(0, 310, 0, 309)
  29.  
  30. Title.Name = "Title"
  31. Title.Parent = Main
  32. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  33. Title.Size = UDim2.new(0, 310, 0, 67)
  34.  
  35. badgui.Name = "badgui"
  36. badgui.Parent = Title
  37. badgui.BackgroundColor3 = Color3.new(0, 0, 0)
  38. badgui.BackgroundTransparency = 1
  39. badgui.Position = UDim2.new(0, 0, 0, 8)
  40. badgui.Size = UDim2.new(0, 310, 0, 51)
  41. badgui.Font = Enum.Font.ArialBold
  42. badgui.FontSize = Enum.FontSize.Size14
  43. badgui.Text = "Help"
  44. badgui.TextColor3 = Color3.new(0.92682372576236238263, 0.111111111111, 0)
  45. badgui.TextSize = 30
  46.  
  47. Nunya.Name = "Nunya"
  48. Nunya.Parent = Main
  49. Nunya.BackgroundColor3 = Color3.new(1, 1, 1)
  50. Nunya.BackgroundTransparency = 1
  51. Nunya.Position = UDim2.new(0, 0, 0, 70)
  52. Nunya.Size = UDim2.new(0, 310, 0, 29)
  53. Nunya.Font = Enum.Font.ArialBold
  54. Nunya.FontSize = Enum.FontSize.Size14
  55. Nunya.Text = "Execute Avr's Gui first, IF, you need to"
  56. Nunya.TextColor3 = Color3.new(0.92682372576236238263, 0.111111111111, 0)
  57. Nunya.TextSize = 14
  58.  
  59. ba.Name = "ba"
  60. ba.Parent = Main
  61. ba.BackgroundColor3 = Color3.new(1, 1, 1)
  62. ba.BackgroundTransparency = 1
  63. ba.Position = UDim2.new(0, 0, 0, 90)
  64. ba.Size = UDim2.new(0, 310, 0, 29)
  65. ba.Font = Enum.Font.ArialBold
  66. ba.FontSize = Enum.FontSize.Size14
  67. ba.Text = "remove/change some of the hotkeys."
  68. ba.TextColor3 = Color3.new(0.92682372576236238263, 0.111111111111, 0)
  69. ba.TextSize = 14
  70.  
  71. ra.Name = "ra"
  72. ra.Parent = Main
  73. ra.BackgroundColor3 = Color3.new(1, 1, 1)
  74. ra.BackgroundTransparency = 1
  75. ra.Position = UDim2.new(0, 0, 0, 110)
  76. ra.Size = UDim2.new(0, 310, 0, 29)
  77. ra.Font = Enum.Font.ArialBold
  78. ra.FontSize = Enum.FontSize.Size14
  79. ra.Text = "Now u may execute Brack's Gui, Enjoy ^-^"
  80. ra.TextColor3 = Color3.new(0.92682372576236238263, 0.111111111111, 0)
  81. ra.TextSize = 14
  82.  
  83. Exit.Name = "Exit"
  84. Exit.Parent = Main
  85. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  86. Exit.BackgroundTransparency = 1
  87. Exit.Position = UDim2.new(0, 276, 0, 0)
  88. Exit.Size = UDim2.new(0, 34, 0, 50)
  89. Exit.Font = Enum.Font.ArialBold
  90. Exit.FontSize = Enum.FontSize.Size32
  91. Exit.Text = "X"
  92. Exit.TextColor3 = Color3.new(0.92682372576236238263, 0.111111111111, 0)
  93. Exit.TextSize = 30
  94. Exit.MouseButton1Down:connect(function()
  95. Main.Visible = false
  96. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement