Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.11 KB | None | 0 0
  1. local FantasticFrontierGUI = Instance.new("ScreenGui")
  2. local DisForMenu = Instance.new("Frame")
  3. local OpenMenu = Instance.new("TextButton")
  4. local OurGui = Instance.new("Frame")
  5. local TitleBox = Instance.new("TextBox")
  6. local Credits = Instance.new("TextBox")
  7. local Sight = Instance.new("TextButton")
  8. local Rabbit = Instance.new("TextButton")
  9. local Present = Instance.new("TextButton")
  10. local Close = Instance.new("TextButton")
  11. local Frog = Instance.new("TextButton")
  12. local Noclip = Instance.new("TextButton")
  13. local CtrlDelete = Instance.new("TextButton")
  14. --Properties:
  15. FantasticFrontierGUI.Name = "Fantastic Frontier GUI"
  16. FantasticFrontierGUI.Parent = game.CoreGui
  17.  
  18. DisForMenu.Name = "DisForMenu"
  19. DisForMenu.Parent = FantasticFrontierGUI
  20. DisForMenu.BackgroundColor3 = Color3.new(0, 0, 0)
  21. DisForMenu.Position = UDim2.new(-1.20432428e-08, 0, 0.418918878, 0)
  22. DisForMenu.Size = UDim2.new(0, 130, 0, 43)
  23. DisForMenu.Style = Enum.FrameStyle.DropShadow
  24.  
  25. OpenMenu.Name = "Open Menu"
  26. OpenMenu.Parent = DisForMenu
  27. OpenMenu.BackgroundColor3 = Color3.new(0, 0, 0)
  28. OpenMenu.Position = UDim2.new(0.0914745629, 0, 0.111604914, 0)
  29. OpenMenu.Size = UDim2.new(0, 94, 0, 22)
  30. OpenMenu.Font = Enum.Font.SciFi
  31. OpenMenu.Text = "Open"
  32. OpenMenu.TextColor3 = Color3.new(1, 1, 1)
  33. OpenMenu.TextSize = 28
  34. OpenMenu.MouseButton1Down:connect(function()
  35. OurGui.Visible = true
  36. DisForMenu.Visible = false
  37. end)
  38.  
  39. OurGui.Name = "OurGui"
  40. OurGui.Parent = FantasticFrontierGUI
  41. OurGui.BackgroundColor3 = Color3.new(1, 1, 1)
  42. OurGui.Position = UDim2.new(0.116022103, 0, 0.351351351, 0)
  43. OurGui.Size = UDim2.new(0, 481, 0, 347)
  44. OurGui.Visible = false
  45. OurGui.Style = Enum.FrameStyle.DropShadow
  46. OurGui.Active = true
  47. OurGui.Draggable = true
  48.  
  49. TitleBox.Archivable = false
  50. TitleBox.Name = "Title Box"
  51. TitleBox.Parent = OurGui
  52. TitleBox.Active = false
  53. TitleBox.BackgroundColor3 = Color3.new(0, 0, 0)
  54. TitleBox.Position = UDim2.new(-0.0457380749, 0, -0.0103231184, 0)
  55. TitleBox.Size = UDim2.new(0, 506, 0, 50)
  56. TitleBox.Font = Enum.Font.Highway
  57. TitleBox.Text = "Fantastic Frontier GUI"
  58. TitleBox.TextColor3 = Color3.new(1, 0, 0)
  59. TitleBox.TextSize = 35
  60. TitleBox.TextWrapped = true
  61.  
  62. Credits.Name = "Credits"
  63. Credits.Parent = OurGui
  64. Credits.Active = false
  65. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  66. Credits.Position = UDim2.new(-0.0383253843, 0, 0.934572101, 0)
  67. Credits.Size = UDim2.new(0, 501, 0, 28)
  68. Credits.Font = Enum.Font.SourceSans
  69. Credits.Text = "Credits: Sasha12557"
  70. Credits.TextColor3 = Color3.new(1, 0, 0)
  71. Credits.TextSize = 35
  72. Credits.TextWrapped = true
  73.  
  74. Sight.Name = "Sight"
  75. Sight.Parent = OurGui
  76. Sight.BackgroundColor3 = Color3.new(0, 0, 0)
  77. Sight.Position = UDim2.new(0.0260318816, 0, 0.172910675, 0)
  78. Sight.Size = UDim2.new(0, 200, 0, 50)
  79. Sight.Font = Enum.Font.Fantasy
  80. Sight.Text = "Sight Range"
  81. Sight.TextColor3 = Color3.new(0.333333, 0, 1)
  82. Sight.TextSize = 35
  83. Sight.MouseButton1Down:connect(function()
  84. game.Players.LocalPlayer.Stats.SightRange.Value = 9999999
  85. end)
  86.  
  87. Rabbit.Name = "Rabbit"
  88. Rabbit.Parent = OurGui
  89. Rabbit.BackgroundColor3 = Color3.new(0, 0, 0)
  90. Rabbit.Position = UDim2.new(0.0292201191, 0, 0.406340092, 0)
  91. Rabbit.Size = UDim2.new(0, 200, 0, 50)
  92. Rabbit.Font = Enum.Font.Fantasy
  93. Rabbit.Text = "Rabbit Hole"
  94. Rabbit.TextColor3 = Color3.new(0.333333, 0, 1)
  95. Rabbit.TextSize = 35
  96. Rabbit.MouseButton1Down:connect(function()
  97. for i, v in pairs(workspace.RabbitholeEntrance:GetChildren()) do
  98. if v:IsA("Part") then
  99. local bbg = Instance.new('BillboardGui')
  100. bbg.Name = "dddd" .. string.char(math.random(56, 61));
  101. bbg.Adornee = v
  102. bbg.Size = UDim2.new(12,0,1,0)
  103. bbg.StudsOffset = Vector3.new(0,2,0)
  104. bbg.Parent = v
  105. bbg.AlwaysOnTop = true
  106. local tl = Instance.new('TextLabel')
  107. tl.BackgroundTransparency = 1
  108. tl.Size = UDim2.new(1,0,1,0)
  109. tl.TextColor3 = Color3.new(1,1,1)
  110. tl.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  111. tl.Font = "Fantasy"
  112. tl.TextSize = 15
  113. tl.TextStrokeTransparency = 0
  114. tl.TextScaled = false
  115. tl.Text = "Rabbit Hole"
  116. tl.Parent = bbg
  117. end
  118. end
  119. end)
  120.  
  121. Present.Name = "Present"
  122. Present.Parent = OurGui
  123. Present.BackgroundColor3 = Color3.new(0, 0, 0)
  124. Present.Position = UDim2.new(0.0292201191, 0, 0.634005785, 0)
  125. Present.Size = UDim2.new(0, 200, 0, 50)
  126. Present.Font = Enum.Font.Fantasy
  127. Present.Text = "Present"
  128. Present.TextColor3 = Color3.new(0.333333, 0, 1)
  129. Present.TextSize = 35
  130. Present.MouseButton1Down:connect(function()
  131. Mushroom = workspace.Present1.PP
  132. local Beam = Instance.new("Beam")
  133. Beam.Name = "Track"
  134. Beam.Parent = game.Players.LocalPlayer.Character.Head
  135. Beam.Width0 = 0.3
  136. Beam.Width1 = 0.3
  137. local Point1 = Instance.new("Attachment")
  138. local Point2 = Instance.new("Attachment")
  139. Point1.Parent = game.Players.LocalPlayer.Character.Head
  140. Point2.Parent = Mushroom
  141. Beam.Attachment0 = Point1
  142. Beam.Attachment1 = Point2
  143. end)
  144. Present.MouseButton1Down:connect(function()
  145. Mushroom = workspace.Present2.PP
  146. local Beam = Instance.new("Beam")
  147. Beam.Name = "Track"
  148. Beam.Parent = game.Players.LocalPlayer.Character.Head
  149. Beam.Width0 = 0.3
  150. Beam.Width1 = 0.3
  151. local Point1 = Instance.new("Attachment")
  152. local Point2 = Instance.new("Attachment")
  153. Point1.Parent = game.Players.LocalPlayer.Character.Head
  154. Point2.Parent = Mushroom
  155. Beam.Attachment0 = Point1
  156. Beam.Attachment1 = Point2
  157. end)
  158. Present.MouseButton1Down:connect(function()
  159. Mushroom = workspace.Present3.PP
  160. local Beam = Instance.new("Beam")
  161. Beam.Name = "Track"
  162. Beam.Parent = game.Players.LocalPlayer.Character.Head
  163. Beam.Width0 = 0.3
  164. Beam.Width1 = 0.3
  165. local Point1 = Instance.new("Attachment")
  166. local Point2 = Instance.new("Attachment")
  167. Point1.Parent = game.Players.LocalPlayer.Character.Head
  168. Point2.Parent = Mushroom
  169. Beam.Attachment0 = Point1
  170. Beam.Attachment1 = Point2
  171. end)
  172. Present.MouseButton1Down:connect(function()
  173. Mushroom = workspace.Present4.PP
  174. local Beam = Instance.new("Beam")
  175. Beam.Name = "Track"
  176. Beam.Parent = game.Players.LocalPlayer.Character.Head
  177. Beam.Width0 = 0.3
  178. Beam.Width1 = 0.3
  179. local Point1 = Instance.new("Attachment")
  180. local Point2 = Instance.new("Attachment")
  181. Point1.Parent = game.Players.LocalPlayer.Character.Head
  182. Point2.Parent = Mushroom
  183. Beam.Attachment0 = Point1
  184. Beam.Attachment1 = Point2
  185. end)
  186. Present.MouseButton1Down:connect(function()
  187. Mushroom = workspace.Present5.PP
  188. local Beam = Instance.new("Beam")
  189. Beam.Name = "Track"
  190. Beam.Parent = game.Players.LocalPlayer.Character.Head
  191. Beam.Width0 = 0.3
  192. Beam.Width1 = 0.3
  193. local Point1 = Instance.new("Attachment")
  194. local Point2 = Instance.new("Attachment")
  195. Point1.Parent = game.Players.LocalPlayer.Character.Head
  196. Point2.Parent = Mushroom
  197. Beam.Attachment0 = Point1
  198. Beam.Attachment1 = Point2
  199. end)
  200.  
  201. Close.Name = "Close"
  202. Close.Parent = OurGui
  203. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  204. Close.Position = UDim2.new(0.946637154, 0, 0.00864543766, 0)
  205. Close.Size = UDim2.new(0, 41, 0, 40)
  206. Close.Font = Enum.Font.Fantasy
  207. Close.Text = "X"
  208. Close.TextColor3 = Color3.new(1, 1, 1)
  209. Close.TextSize = 35
  210. Close.MouseButton1Down:connect(function()
  211. DisForMenu.Visible = true
  212. OurGui.Visible = false
  213. end)
  214.  
  215. Frog.Name = "Frog"
  216. Frog.Parent = OurGui
  217. Frog.BackgroundColor3 = Color3.new(0, 0, 0)
  218. Frog.Position = UDim2.new(0.540654659, 0, 0.172910675, 0)
  219. Frog.Size = UDim2.new(0, 200, 0, 50)
  220. Frog.Font = Enum.Font.Fantasy
  221. Frog.Text = "Frog"
  222. Frog.TextColor3 = Color3.new(0.333333, 0, 1)
  223. Frog.TextSize = 35
  224. Frog.MouseButton1Down:connect(function()
  225. skraatadu = workspace.Spawners["The Sprutle Frog Expansion_Updated"].Spawner_GratefulFrogs.GratefulFrog.PP
  226. if not skraatadu then print("Found none") else
  227. local ech = Instance.new("Beam")
  228. ech.Name = "dddd"
  229. ech.Parent = game.Players.LocalPlayer.Character.Torso
  230. ech.Width0 = 0.1
  231. ech.Width1 = 0.1
  232. local dab = Instance.new("Attachment")
  233. local pp = Instance.new("Attachment")
  234. dab.Parent = game.Players.LocalPlayer.Character.Torso
  235. pp.Parent = skraatadu
  236. ech.Attachment0 = dab
  237. ech.Attachment1 = pp
  238. end
  239. end)
  240.  
  241. Noclip.Name = "Noclip"
  242. Noclip.Parent = OurGui
  243. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  244. Noclip.Position = UDim2.new(0.540654659, 0, 0.403458238, 0)
  245. Noclip.Size = UDim2.new(0, 200, 0, 50)
  246. Noclip.Font = Enum.Font.Fantasy
  247. Noclip.Text = "Noclip (For Tower)"
  248. Noclip.TextColor3 = Color3.new(0.333333, 0, 1)
  249. Noclip.TextSize = 25
  250. Noclip.MouseButton1Down:connect(function()
  251. game:getService("RunService"):BindToRenderStep("",0,function()
  252. if not game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid") then return end
  253. if game:getService("UserInputService"):IsKeyDown(Enum.KeyCode.V) then
  254. game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid"):ChangeState(11)
  255. end
  256. end)
  257. end)
  258.  
  259. CtrlDelete.Name = "Ctrl Delete"
  260. CtrlDelete.Parent = OurGui
  261. CtrlDelete.BackgroundColor3 = Color3.new(0, 0, 0)
  262. CtrlDelete.Position = UDim2.new(0.540654659, 0, 0.6311239, 0)
  263. CtrlDelete.Size = UDim2.new(0, 200, 0, 50)
  264. CtrlDelete.Font = Enum.Font.Fantasy
  265. CtrlDelete.Text = "Ctrl Delete"
  266. CtrlDelete.TextColor3 = Color3.new(0.333333, 0, 1)
  267. CtrlDelete.TextSize = 35
  268. CtrlDelete.MouseButton1Down:connect(function()
  269. local Plr = game:GetService("Players").LocalPlayer
  270. local Mouse = Plr:GetMouse()
  271.  
  272. Mouse.Button1Down:connect(function()
  273. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  274. if not Mouse.Target then return end
  275. Mouse.Target:Destroy()
  276. end)
  277. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement