Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.00 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local MainFrame = Instance.new("Frame")
  6. local GetBlueprints = Instance.new("TextButton")
  7. local Close = Instance.new("TextButton")
  8. local GetPaintTool = Instance.new("TextButton")
  9. local WaypointsOpen = Instance.new("TextButton")
  10. local WaypointsClose = Instance.new("TextButton")
  11. local MoneyDupe = Instance.new("TextButton")
  12. local FlyMenuFrame = Instance.new("Frame")
  13. local GriefFly = Instance.new("TextButton")
  14. local Fly = Instance.new("TextButton")
  15. local FlyMenuClose = Instance.new("TextButton")
  16. local FlyMenuOpen = Instance.new("TextButton")
  17. local MYFrame = Instance.new("Frame")
  18. local Open = Instance.new("TextButton")
  19. local ScrollingFrame = Instance.new("ScrollingFrame")
  20. local TextButton = Instance.new("TextButton")
  21. local TextButton_2 = Instance.new("TextButton")
  22. --Properties:
  23. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. MainFrame.Name = "MainFrame"
  27. MainFrame.Parent = ScreenGui
  28. MainFrame.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  29. MainFrame.Position = UDim2.new(0.28811878, 0, 0.147773281, 0)
  30. MainFrame.Size = UDim2.new(0, 506, 0, 279)
  31. MainFrame.Visible = false
  32. MainFrame.Active = true
  33. MainFrame.Draggable = true
  34.  
  35.  
  36. GetBlueprints.Name = "GetBlueprints"
  37. GetBlueprints.Parent = MainFrame
  38. GetBlueprints.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  39. GetBlueprints.BorderColor3 = Color3.new(0, 0, 0)
  40. GetBlueprints.Position = UDim2.new(0.043478258, 0, 0.068100363, 0)
  41. GetBlueprints.Size = UDim2.new(0, 152, 0, 41)
  42. GetBlueprints.Font = Enum.Font.Cartoon
  43. GetBlueprints.Text = "Get Bluepirnts"
  44. GetBlueprints.TextColor3 = Color3.new(0, 0, 0)
  45. GetBlueprints.TextSize = 20
  46. GetBlueprints.TextWrapped = true
  47. GetBlueprints.MouseButton1Click:connect(function()
  48. for i,v in pairs(game.ReplicatedStorage.Purchasables.Structures.BlueprintStructures:GetChildren()) do
  49. local clone = v:Clone()
  50. clone.Parent = game.Players.LocalPlayer.PlayerBlueprints.Blueprints
  51. end
  52. end)
  53.  
  54. Close.Name = "Close"
  55. Close.Parent = MainFrame
  56. Close.BackgroundColor3 = Color3.new(0.760784, 0.729412, 0.709804)
  57. Close.Position = UDim2.new(0.94268775, 0, 0, 0)
  58. Close.Size = UDim2.new(0, 29, 0, 30)
  59. Close.Font = Enum.Font.Code
  60. Close.Text = "X"
  61. Close.TextColor3 = Color3.new(0, 0, 0)
  62. Close.TextSize = 20
  63. Close.MouseButton1Click:connect(function()
  64. MainFrame.Visible=false
  65. MYFrame.Visible=true
  66. end)
  67.  
  68.  
  69.  
  70. GetPaintTool.Name = "GetPaintTool"
  71. GetPaintTool.Parent = MainFrame
  72. GetPaintTool.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  73. GetPaintTool.BorderColor3 = Color3.new(0, 0, 0)
  74. GetPaintTool.Position = UDim2.new(0.39920947, 0, 0.068100363, 0)
  75. GetPaintTool.Size = UDim2.new(0, 152, 0, 41)
  76. GetPaintTool.Font = Enum.Font.Cartoon
  77. GetPaintTool.Text = "Paint Tool"
  78. GetPaintTool.TextColor3 = Color3.new(0, 0, 0)
  79. GetPaintTool.TextSize = 20
  80. GetPaintTool.TextWrapped = true
  81. GetPaintTool.MouseButton1Down:connect(function()
  82. loadstring(game:GetObjects("rbxassetid://3480804278")[1].Source)()
  83. end)
  84.  
  85. WaypointsOpen.Name = "WaypointsOpen"
  86. WaypointsOpen.Parent = MainFrame
  87. WaypointsOpen.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  88. WaypointsOpen.BorderColor3 = Color3.new(0, 0, 0)
  89. WaypointsOpen.Position = UDim2.new(0.839920938, 0, 0.143369183, 0)
  90. WaypointsOpen.Size = UDim2.new(0, 71, 0, 20)
  91. WaypointsOpen.Font = Enum.Font.Cartoon
  92. WaypointsOpen.Text = "Waypoints"
  93. WaypointsOpen.TextColor3 = Color3.new(0, 0, 0)
  94. WaypointsOpen.TextSize = 15
  95. WaypointsOpen.TextWrapped = true
  96. WaypointsOpen.MouseButton1Down:connect(function()
  97. ScrollingFrame.Visible = true
  98. WaypointsOpen.Visible = false
  99. WaypointsClose.Visible = true
  100. end)
  101.  
  102. WaypointsClose.Name = "WaypointsClose"
  103. WaypointsClose.Parent = MainFrame
  104. WaypointsClose.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  105. WaypointsClose.BorderColor3 = Color3.new(0, 0, 0)
  106. WaypointsClose.Position = UDim2.new(0.839920938, 0, 0.143369183, 0)
  107. WaypointsClose.Size = UDim2.new(0, 71, 0, 20)
  108. WaypointsClose.Visible = false
  109. WaypointsClose.Font = Enum.Font.Cartoon
  110. WaypointsClose.Text = "Waypoints"
  111. WaypointsClose.TextColor3 = Color3.new(0, 0, 0)
  112. WaypointsClose.TextSize = 15
  113. WaypointsClose.TextWrapped = true
  114. WaypointsClose.MouseButton1Down:connect(function()
  115. WaypointsClose.Visible = false
  116. ScrollingFrame.Visible = false
  117. WaypointsOpen.Visible = true
  118. end)
  119.  
  120. MoneyDupe.Name = "MoneyDupe"
  121. MoneyDupe.Parent = MainFrame
  122. MoneyDupe.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  123. MoneyDupe.BorderColor3 = Color3.new(0, 0, 0)
  124. MoneyDupe.Position = UDim2.new(0.0434782505, 0, 0.286738336, 0)
  125. MoneyDupe.Size = UDim2.new(0, 152, 0, 41)
  126. MoneyDupe.Font = Enum.Font.Cartoon
  127. MoneyDupe.Text = "Money Dupe"
  128. MoneyDupe.TextColor3 = Color3.new(0, 0, 0)
  129. MoneyDupe.TextSize = 20
  130. MoneyDupe.TextWrapped = true
  131. MoneyDupe.MouseButton1Down:connect(function()
  132. loadstring(game:GetObjects("rbxassetid://3480742044")[1].Source)()
  133. end)
  134.  
  135. FlyMenuFrame.Name = "FlyMenuFrame"
  136. FlyMenuFrame.Parent = MainFrame
  137. FlyMenuFrame.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  138. FlyMenuFrame.Position = UDim2.new(0.830039501, 0, 1.02867389, 0)
  139. FlyMenuFrame.Size = UDim2.new(0, 81, 0, 76)
  140. FlyMenuFrame.Visible = false
  141.  
  142. GriefFly.Name = "GriefFly"
  143. GriefFly.Parent = FlyMenuFrame
  144. GriefFly.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  145. GriefFly.BorderColor3 = Color3.new(0, 0, 0)
  146. GriefFly.Position = UDim2.new(0.0497974977, 0, 0.103989854, 0)
  147. GriefFly.Size = UDim2.new(0, 71, 0, 16)
  148. GriefFly.Font = Enum.Font.Cartoon
  149. GriefFly.Text = "GriefFly"
  150. GriefFly.TextColor3 = Color3.new(0, 0, 0)
  151. GriefFly.TextSize = 20
  152. GriefFly.TextWrapped = true
  153. GriefFly.MouseButton1Down:connect(function()
  154. loadstring(game:GetObjects("rbxassetid://03484712969")[1].Source)()
  155. end)
  156.  
  157. Fly.Name = "Fly"
  158. Fly.Parent = FlyMenuFrame
  159. Fly.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  160. Fly.BorderColor3 = Color3.new(0, 0, 0)
  161. Fly.Position = UDim2.new(0.0497974753, 0, 0.554800987, 0)
  162. Fly.Size = UDim2.new(0, 71, 0, 16)
  163. Fly.Font = Enum.Font.Cartoon
  164. Fly.Text = "Fly"
  165. Fly.TextColor3 = Color3.new(0, 0, 0)
  166. Fly.TextSize = 20
  167. Fly.TextWrapped = true
  168. Fly.MouseButton1Down:connect(function()
  169. loadstring(game:GetObjects("rbxassetid://3490375590")[1].Source)()
  170. end)
  171.  
  172. FlyMenuClose.Name = "FlyMenuClose"
  173. FlyMenuClose.Parent = MainFrame
  174. FlyMenuClose.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  175. FlyMenuClose.BorderColor3 = Color3.new(0, 0, 0)
  176. FlyMenuClose.Position = UDim2.new(0.826679826, 0, 0.909838676, 0)
  177. FlyMenuClose.Size = UDim2.new(0, 81, 0, 16)
  178. FlyMenuClose.Font = Enum.Font.Cartoon
  179. FlyMenuClose.Text = "FlyMenu"
  180. FlyMenuClose.TextColor3 = Color3.new(0, 0, 0)
  181. FlyMenuClose.TextSize = 20
  182. FlyMenuClose.TextWrapped = true
  183. FlyMenuClose.MouseButton1Down:connect(function()
  184. FlyMenuOpen.Visible = true
  185. FlyMenuClose.Visible = false
  186. FlyMenuFrame.Visible = false
  187. end)
  188.  
  189.  
  190. FlyMenuOpen.Name = "FlyMenuOpen"
  191. FlyMenuOpen.Parent = MainFrame
  192. FlyMenuOpen.BackgroundColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  193. FlyMenuOpen.BorderColor3 = Color3.new(0, 0, 0)
  194. FlyMenuOpen.Position = UDim2.new(0.826679826, 0, 0.909838676, 0)
  195. FlyMenuOpen.Size = UDim2.new(0, 81, 0, 16)
  196. FlyMenuOpen.Font = Enum.Font.Cartoon
  197. FlyMenuOpen.Text = "FlyMenu"
  198. FlyMenuOpen.TextColor3 = Color3.new(0, 0, 0)
  199. FlyMenuOpen.TextSize = 20
  200. FlyMenuOpen.TextWrapped = true
  201. FlyMenuOpen.MouseButton1Down:connect(function()
  202. FlyMenuOpen.Visible = false
  203. FlyMenuClose.Visible = true
  204. FlyMenuFrame.Visible = true
  205. end)
  206.  
  207. MYFrame.Name = "MYFrame"
  208. MYFrame.Parent = ScreenGui
  209. MYFrame.BackgroundColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  210. MYFrame.Position = UDim2.new(0, 0, 0.196356282, 0)
  211. MYFrame.Size = UDim2.new(0, 98, 0, 32)
  212.  
  213. Open.Name = "Open"
  214. Open.Parent = MYFrame
  215. Open.BackgroundColor3 = Color3.new(0.505882, 0.505882, 0.505882)
  216. Open.BorderColor3 = Color3.new(1, 1, 1)
  217. Open.Size = UDim2.new(0, 98, 0, 32)
  218. Open.Font = Enum.Font.Cartoon
  219. Open.Text = "Open"
  220. Open.TextColor3 = Color3.new(0, 0, 0)
  221. Open.TextSize = 14
  222. Open.MouseButton1Click:connect(function()
  223. MainFrame.Visible = true
  224. MYFrame.Visible = false
  225. end)
  226.  
  227.  
  228. ScrollingFrame.Parent = ScreenGui
  229. ScrollingFrame.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  230. ScrollingFrame.Position = UDim2.new(0.796039581, 0, 0.143724695, 0)
  231. ScrollingFrame.Size = UDim2.new(0, 100, 0, 283)
  232. ScrollingFrame.Visible = false
  233.  
  234. TextButton.Parent = ScrollingFrame
  235. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  236. TextButton.Position = UDim2.new(0.0600000024, 0, 0.00782220438, 0)
  237. TextButton.Size = UDim2.new(0, 74, 0, 18)
  238. TextButton.Font = Enum.Font.SourceSans
  239. TextButton.TextColor3 = Color3.new(0, 0, 0)
  240. TextButton.TextSize = 14
  241.  
  242. TextButton_2.Parent = ScrollingFrame
  243. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  244. TextButton_2.Position = UDim2.new(0.0599999987, 0, 0.0321137011, 0)
  245. TextButton_2.Size = UDim2.new(0, 74, 0, 18)
  246. TextButton_2.Font = Enum.Font.SourceSans
  247. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  248. TextButton_2.TextSize = 14
  249. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement