Advertisement
Guest User

Super Nice Notoriety Haxx 1.0

a guest
Oct 15th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local OpenButton = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local Name = Instance.new("TextLabel")
  11. local CopyCardboardSafe = Instance.new("TextButton")
  12. local DeleteSafeDoorNightclub = Instance.new("TextButton")
  13. local Close = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. OpenFrame.Name = "OpenFrame"
  21. OpenFrame.Parent = ScreenGui
  22. OpenFrame.BackgroundColor3 = Color3.new(0.454902, 0.101961, 0.517647)
  23. OpenFrame.BorderColor3 = Color3.new(0.207843, 0.00784314, 0.196078)
  24. OpenFrame.Position = UDim2.new(0, 0, 0.43857494, 0)
  25. OpenFrame.Size = UDim2.new(0, 100, 0, 48)
  26.  
  27. OpenButton.Name = "OpenButton"
  28. OpenButton.Parent = OpenFrame
  29. OpenButton.BackgroundColor3 = Color3.new(0.454902, 0, 0.545098)
  30. OpenButton.Position = UDim2.new(0, 0, 0.145833328, 0)
  31. OpenButton.Size = UDim2.new(0, 100, 0, 32)
  32. OpenButton.Font = Enum.Font.Fantasy
  33. OpenButton.Text = "Open"
  34. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  35. OpenButton.TextSize = 20
  36. OpenButton.MouseButton1Down:connect(function()
  37. Main.Visible = true
  38. end)
  39.  
  40. Main.Name = "Main"
  41. Main.Parent = ScreenGui
  42. Main.BackgroundColor3 = Color3.new(0.454902, 0, 0.501961)
  43. Main.Position = UDim2.new(0.197040498, 0, 0.0503685512, 0)
  44. Main.Size = UDim2.new(0, 660, 0, 211)
  45. Main.Visible = false
  46. Main.Dragable = true
  47.  
  48. Name.Name = "Name"
  49. Name.Parent = Main
  50. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Name.Size = UDim2.new(0, 660, 0, 24)
  52. Name.Font = Enum.Font.Fantasy
  53. Name.Text = "Super Nice Notoriety Haxx 1.0"
  54. Name.TextColor3 = Color3.new(0, 0, 0)
  55. Name.TextSize = 20
  56.  
  57. CopyCardboardSafe.Name = "Copy Cardboard Safe"
  58. CopyCardboardSafe.Parent = Main
  59. CopyCardboardSafe.BackgroundColor3 = Color3.new(0.454902, 0, 0.545098)
  60. CopyCardboardSafe.BorderColor3 = Color3.new(0.454902, 0, 0.545098)
  61. CopyCardboardSafe.Position = UDim2.new(0.0121212117, 0, 0.232227489, 0)
  62. CopyCardboardSafe.Size = UDim2.new(0, 200, 0, 50)
  63. CopyCardboardSafe.Font = Enum.Font.Fantasy
  64. CopyCardboardSafe.Text = "Copy Cardboard safe"
  65. CopyCardboardSafe.TextColor3 = Color3.new(0, 0, 0)
  66. CopyCardboardSafe.TextSize = 20
  67. OpenButton.MouseButton1Down:connect(function()
  68. game.Workspace.SafeSpots.CardboardSafeSpot:Copy()
  69. end)
  70.  
  71.  
  72. DeleteSafeDoorNightclub.Name = "Delete Safe Door(Nightclub)"
  73. DeleteSafeDoorNightclub.Parent = Main
  74. DeleteSafeDoorNightclub.BackgroundColor3 = Color3.new(0.454902, 0, 0.545098)
  75. DeleteSafeDoorNightclub.BorderColor3 = Color3.new(0.454902, 0, 0.545098)
  76. DeleteSafeDoorNightclub.Position = UDim2.new(0.0121212117, 0, 0.597156405, 0)
  77. DeleteSafeDoorNightclub.Size = UDim2.new(0, 200, 0, 50)
  78. DeleteSafeDoorNightclub.Font = Enum.Font.Fantasy
  79. DeleteSafeDoorNightclub.Text = "Safe Door Delete(Nightclub)"
  80. DeleteSafeDoorNightclub.TextColor3 = Color3.new(0, 0, 0)
  81. DeleteSafeDoorNightclub.TextSize = 20
  82. OpenButton.MouseButton1Down:connect(function()
  83. game.Workspace.Map.ThumbSafe.Main:Remove()
  84. end)
  85.  
  86. Close.Name = "Close"
  87. Close.Parent = Main
  88. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  89. Close.Position = UDim2.new(0.962121189, 0, 0, 0)
  90. Close.Size = UDim2.new(0, 25, 0, 24)
  91. Close.Font = Enum.Font.Fantasy
  92. Close.Text = "X"
  93. Close.TextColor3 = Color3.new(0, 0, 0)
  94. Close.TextSize = 20
  95. Close.MouseButton1Down:connect(function()
  96. Main.Visible = true
  97. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement