Advertisement
liamglitches

Bee Swarm Simulator GUI by NotJimbo#7666

Jul 25th, 2018
19,926
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.69 KB | None | 0 0
  1. -- GUI made by LiamGlitchesYT
  2. -- My Discord: NotJimbo#7666
  3. -- My V3RM: NotJimbo
  4. -- My YT: LiamGlitchesYT
  5.  
  6. ScreenGui = Instance.new("ScreenGui")
  7. MainFrame = Instance.new("Frame")
  8. AutoDig = Instance.new("TextButton")
  9. GotoHive = Instance.new("TextButton")
  10. OtherTeleports = Instance.new("TextButton")
  11. OtherTeleportsFrame = Instance.new("Frame")
  12. credits = Instance.new("TextLabel")
  13. MushroomField = Instance.new("TextButton")
  14. StarwberryField = Instance.new("TextButton")
  15. CloverField = Instance.new("TextButton")
  16. SpiderField = Instance.new("TextButton")
  17. BlueField = Instance.new("TextButton")
  18. SunflowerField = Instance.new("TextButton")
  19. CactusField = Instance.new("TextButton")
  20. RoseField = Instance.new("TextButton")
  21. BambooField = Instance.new("TextButton")
  22. DandelionField = Instance.new("TextButton")
  23. PumpkinField = Instance.new("TextButton")
  24. MountainTopField = Instance.new("TextButton")
  25. PineappleField = Instance.new("TextButton")
  26. MountainTopShop = Instance.new("TextButton")
  27. RoyalJellyShop = Instance.new("TextButton")
  28. BeeShop = Instance.new("TextButton")
  29. BlueClubhouse = Instance.new("TextButton")
  30. RedClubhouse = Instance.new("TextButton")
  31. Fields = Instance.new("TextLabel")
  32. Misc = Instance.new("TextLabel")
  33. Close = Instance.new("TextButton")
  34.  
  35. ScreenGui.Parent = game.CoreGui
  36.  
  37. MainFrame.Name = "MainFrame"
  38. MainFrame.Parent = ScreenGui
  39. MainFrame.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  40. MainFrame.BackgroundTransparency = 0.30000001192093
  41. MainFrame.BorderSizePixel = 0
  42. MainFrame.Position = UDim2.new(0.0164092649, 0, 0.836158156, 0)
  43. MainFrame.Size = UDim2.new(0, 336, 0, 71)
  44.  
  45. AutoDig.Name = "AutoDig"
  46. AutoDig.Parent = MainFrame
  47. AutoDig.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  48. AutoDig.BackgroundTransparency = 0.30000001192093
  49. AutoDig.BorderSizePixel = 0
  50. AutoDig.Position = UDim2.new(0.0444444455, 0, 0.140845075, 0)
  51. AutoDig.Size = UDim2.new(0, 91, 0, 50)
  52. AutoDig.Font = Enum.Font.Highway
  53. AutoDig.FontSize = Enum.FontSize.Size28
  54. AutoDig.Text = "Auto Dig"
  55. AutoDig.TextColor3 = Color3.new(0, 0, 0)
  56. AutoDig.TextSize = 25
  57. AutoDig.MouseButton1Down:connect(function()
  58. print('This was made by LuaScripts, thanks!')
  59. while true do
  60. game.Workspace.LocalPlayer.Scooper.ClickEvent:FireServer(99999)
  61. wait(1)
  62. game.Workspace.LocalPlayer.Scooper.ClickEvent:FireServer(99999)
  63. wait(1)
  64. game.Workspace.LocalPlayer.Scooper.ClickEvent:FireServer(99999)
  65. wait(1)
  66. game.Workspace.LocalPlayer.Scooper.ClickEvent:FireServer(99999)
  67. end
  68. end)
  69.  
  70. GotoHive.Name = "GotoHive"
  71. GotoHive.Parent = MainFrame
  72. GotoHive.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  73. GotoHive.BackgroundTransparency = 0.30000001192093
  74. GotoHive.BorderSizePixel = 0
  75. GotoHive.Position = UDim2.new(0.364236802, 0, 0.140845075, 0)
  76. GotoHive.Size = UDim2.new(0, 91, 0, 50)
  77. GotoHive.Font = Enum.Font.Highway
  78. GotoHive.FontSize = Enum.FontSize.Size24
  79. GotoHive.Text = "Goto Hive"
  80. GotoHive.TextColor3 = Color3.new(0, 0, 0)
  81. GotoHive.TextSize = 20
  82. GotoHive.MouseButton1Down:connect(function()
  83. local player = game:GetService("Players").LocalPlayer
  84. player.Character:MoveTo(player.SpawnPos.Value.p)
  85. print('Teleported to your own hive')
  86. end)
  87.  
  88. OtherTeleports.Name = "OtherTeleports"
  89. OtherTeleports.Parent = MainFrame
  90. OtherTeleports.BackgroundColor3 = Color3.new(0, 0, 0)
  91. OtherTeleports.BackgroundTransparency = 0.30000001192093
  92. OtherTeleports.BorderSizePixel = 0
  93. OtherTeleports.Position = UDim2.new(0.693558753, 0, 0.140845075, 0)
  94. OtherTeleports.Size = UDim2.new(0, 91, 0, 50)
  95. OtherTeleports.Font = Enum.Font.Highway
  96. OtherTeleports.FontSize = Enum.FontSize.Size24
  97. OtherTeleports.Text = "Other Teleports"
  98. OtherTeleports.TextColor3 = Color3.new(1, 1, 1)
  99. OtherTeleports.TextScaled = true
  100. OtherTeleports.TextSize = 20
  101. OtherTeleports.TextWrapped = true
  102. OtherTeleports.MouseButton1Down:connect(function()
  103. OtherTeleportsFrame.Visible = true
  104. end)
  105.  
  106. OtherTeleportsFrame.Name = "OtherTeleportsFrame"
  107. OtherTeleportsFrame.Parent = ScreenGui
  108. OtherTeleportsFrame.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  109. OtherTeleportsFrame.BackgroundTransparency = 0.30000001192093
  110. OtherTeleportsFrame.BorderSizePixel = 0
  111. OtherTeleportsFrame.Position = UDim2.new(0.0164092481, 0, 0.387947232, 0)
  112. OtherTeleportsFrame.Size = UDim2.new(0, 405, 0, 217)
  113. OtherTeleportsFrame.Visible = false
  114. OtherTeleportsFrame.Active = true
  115. OtherTeleportsFrame.Draggable = true
  116.  
  117. credits.Name = "credits"
  118. credits.Parent = OtherTeleportsFrame
  119. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  120. credits.BackgroundTransparency = 1
  121. credits.Position = UDim2.new(0.555467367, 0, -0.069124423, 0)
  122. credits.Size = UDim2.new(0, 200, 0, 50)
  123. credits.Font = Enum.Font.SourceSans
  124. credits.FontSize = Enum.FontSize.Size14
  125. credits.Text = "GUI by LiamGlitchesYT @ v3rm"
  126. credits.TextColor3 = Color3.new(1, 1, 1)
  127. credits.TextSize = 14
  128. credits.TextWrapped = true
  129.  
  130. MushroomField.Name = "MushroomField"
  131. MushroomField.Parent = OtherTeleportsFrame
  132. MushroomField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  133. MushroomField.BackgroundTransparency = 0.30000001192093
  134. MushroomField.BorderSizePixel = 0
  135. MushroomField.Position = UDim2.new(0.0188051164, 0, 0.253456205, 0)
  136. MushroomField.Size = UDim2.new(0, 91, 0, 27)
  137. MushroomField.Font = Enum.Font.Highway
  138. MushroomField.FontSize = Enum.FontSize.Size28
  139. MushroomField.Text = "Mushroom Field"
  140. MushroomField.TextColor3 = Color3.new(0, 0, 0)
  141. MushroomField.TextScaled = true
  142. MushroomField.TextSize = 25
  143. MushroomField.TextWrapped = true
  144. MushroomField.MouseButton1Down:connect(function()
  145. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-89.7,3,111.7)
  146. end)
  147.  
  148. StarwberryField.Name = "StarwberryField"
  149. StarwberryField.Parent = OtherTeleportsFrame
  150. StarwberryField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  151. StarwberryField.BackgroundTransparency = 0.30000001192093
  152. StarwberryField.BorderSizePixel = 0
  153. StarwberryField.Position = UDim2.new(0.0188051164, 0, 0.405529946, 0)
  154. StarwberryField.Size = UDim2.new(0, 91, 0, 27)
  155. StarwberryField.Font = Enum.Font.Highway
  156. StarwberryField.FontSize = Enum.FontSize.Size28
  157. StarwberryField.Text = "Strawberry Field"
  158. StarwberryField.TextColor3 = Color3.new(0, 0, 0)
  159. StarwberryField.TextScaled = true
  160. StarwberryField.TextSize = 25
  161. StarwberryField.TextWrapped = true
  162. StarwberryField.MouseButton1Down:connect(function()
  163. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-178.178,20,-9.8)
  164. end)
  165.  
  166. CloverField.Name = "CloverField"
  167. CloverField.Parent = OtherTeleportsFrame
  168. CloverField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  169. CloverField.BackgroundTransparency = 0.30000001192093
  170. CloverField.BorderSizePixel = 0
  171. CloverField.Position = UDim2.new(0.0188051164, 0, 0.557603717, 0)
  172. CloverField.Size = UDim2.new(0, 91, 0, 27)
  173. CloverField.Font = Enum.Font.Highway
  174. CloverField.FontSize = Enum.FontSize.Size28
  175. CloverField.Text = "Clover Field"
  176. CloverField.TextColor3 = Color3.new(0, 0, 0)
  177. CloverField.TextScaled = true
  178. CloverField.TextSize = 25
  179. CloverField.TextWrapped = true
  180. CloverField.MouseButton1Down:connect(function()
  181. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(180.17,33,196.3)
  182. end)
  183.  
  184. SpiderField.Name = "SpiderField"
  185. SpiderField.Parent = OtherTeleportsFrame
  186. SpiderField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  187. SpiderField.BackgroundTransparency = 0.30000001192093
  188. SpiderField.BorderSizePixel = 0
  189. SpiderField.Position = UDim2.new(0.0188051164, 0, 0.718894005, 0)
  190. SpiderField.Size = UDim2.new(0, 91, 0, 27)
  191. SpiderField.Font = Enum.Font.Highway
  192. SpiderField.FontSize = Enum.FontSize.Size28
  193. SpiderField.Text = "Spider Field"
  194. SpiderField.TextColor3 = Color3.new(0, 0, 0)
  195. SpiderField.TextScaled = true
  196. SpiderField.TextSize = 25
  197. SpiderField.TextWrapped = true
  198. SpiderField.MouseButton1Down:connect(function()
  199. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-41.4,20,-13.5)
  200. end)
  201.  
  202. BlueField.Name = "BlueField"
  203. BlueField.Parent = OtherTeleportsFrame
  204. BlueField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  205. BlueField.BackgroundTransparency = 0.30000001192093
  206. BlueField.BorderSizePixel = 0
  207. BlueField.Position = UDim2.new(0.0188051164, 0, 0.870967746, 0)
  208. BlueField.Size = UDim2.new(0, 91, 0, 27)
  209. BlueField.Font = Enum.Font.Highway
  210. BlueField.FontSize = Enum.FontSize.Size28
  211. BlueField.Text = "Blue Field"
  212. BlueField.TextColor3 = Color3.new(0, 0, 0)
  213. BlueField.TextScaled = true
  214. BlueField.TextSize = 25
  215. BlueField.TextWrapped = true
  216. BlueField.MouseButton1Down:connect(function()
  217. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(146.8,4,100.5)
  218. end)
  219.  
  220. SunflowerField.Name = "SunflowerField"
  221. SunflowerField.Parent = OtherTeleportsFrame
  222. SunflowerField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  223. SunflowerField.BackgroundTransparency = 0.30000001192093
  224. SunflowerField.BorderSizePixel = 0
  225. SunflowerField.Position = UDim2.new(0.276984155, 0, 0.248847917, 0)
  226. SunflowerField.Size = UDim2.new(0, 91, 0, 27)
  227. SunflowerField.Font = Enum.Font.Highway
  228. SunflowerField.FontSize = Enum.FontSize.Size28
  229. SunflowerField.Text = "Sunflower Field"
  230. SunflowerField.TextColor3 = Color3.new(0, 0, 0)
  231. SunflowerField.TextScaled = true
  232. SunflowerField.TextSize = 25
  233. SunflowerField.TextWrapped = true
  234. SunflowerField.MouseButton1Down:connect(function()
  235. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-207.426,3,162.8)
  236. end)
  237.  
  238. CactusField.Name = "CactusField"
  239. CactusField.Parent = OtherTeleportsFrame
  240. CactusField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  241. CactusField.BackgroundTransparency = 0.30000001192093
  242. CactusField.BorderSizePixel = 0
  243. CactusField.Position = UDim2.new(0.276984155, 0, 0.866359413, 0)
  244. CactusField.Size = UDim2.new(0, 91, 0, 27)
  245. CactusField.Font = Enum.Font.Highway
  246. CactusField.FontSize = Enum.FontSize.Size28
  247. CactusField.Text = "Cactus Field"
  248. CactusField.TextColor3 = Color3.new(0, 0, 0)
  249. CactusField.TextScaled = true
  250. CactusField.TextSize = 25
  251. CactusField.TextWrapped = true
  252. CactusField.MouseButton1Down:connect(function()
  253. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-188.5,68,-101.5)
  254. end)
  255.  
  256. RoseField.Name = "RoseField"
  257. RoseField.Parent = OtherTeleportsFrame
  258. RoseField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  259. RoseField.BackgroundTransparency = 0.30000001192093
  260. RoseField.BorderSizePixel = 0
  261. RoseField.Position = UDim2.new(0.276984155, 0, 0.714285672, 0)
  262. RoseField.Size = UDim2.new(0, 91, 0, 27)
  263. RoseField.Font = Enum.Font.Highway
  264. RoseField.FontSize = Enum.FontSize.Size28
  265. RoseField.Text = "Rose Field"
  266. RoseField.TextColor3 = Color3.new(0, 0, 0)
  267. RoseField.TextScaled = true
  268. RoseField.TextSize = 25
  269. RoseField.TextWrapped = true
  270. RoseField.MouseButton1Down:connect(function()
  271. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-322.835,20,129)
  272. end)
  273.  
  274. BambooField.Name = "BambooField"
  275. BambooField.Parent = OtherTeleportsFrame
  276. BambooField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  277. BambooField.BackgroundTransparency = 0.30000001192093
  278. BambooField.BorderSizePixel = 0
  279. BambooField.Position = UDim2.new(0.276984155, 0, 0.552995384, 0)
  280. BambooField.Size = UDim2.new(0, 91, 0, 27)
  281. BambooField.Font = Enum.Font.Highway
  282. BambooField.FontSize = Enum.FontSize.Size28
  283. BambooField.Text = "Bamboo Field"
  284. BambooField.TextColor3 = Color3.new(0, 0, 0)
  285. BambooField.TextScaled = true
  286. BambooField.TextSize = 25
  287. BambooField.TextWrapped = true
  288. BambooField.MouseButton1Down:connect(function()
  289. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(132.9,20,-25.6)
  290. end)
  291.  
  292. DandelionField.Name = "DandelionField"
  293. DandelionField.Parent = OtherTeleportsFrame
  294. DandelionField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  295. DandelionField.BackgroundTransparency = 0.30000001192093
  296. DandelionField.BorderSizePixel = 0
  297. DandelionField.Position = UDim2.new(0.276984155, 0, 0.400921673, 0)
  298. DandelionField.Size = UDim2.new(0, 91, 0, 27)
  299. DandelionField.Font = Enum.Font.Highway
  300. DandelionField.FontSize = Enum.FontSize.Size28
  301. DandelionField.Text = "Dandelion Field"
  302. DandelionField.TextColor3 = Color3.new(0, 0, 0)
  303. DandelionField.TextScaled = true
  304. DandelionField.TextSize = 25
  305. DandelionField.TextWrapped = true
  306. DandelionField.MouseButton1Down:connect(function()
  307. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-30.35,4,221.5)
  308. end)
  309.  
  310. PumpkinField.Name = "PumpkinField"
  311. PumpkinField.Parent = OtherTeleportsFrame
  312. PumpkinField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  313. PumpkinField.BackgroundTransparency = 0.30000001192093
  314. PumpkinField.BorderSizePixel = 0
  315. PumpkinField.Position = UDim2.new(0.527513266, 0, 0.248847917, 0)
  316. PumpkinField.Size = UDim2.new(0, 91, 0, 27)
  317. PumpkinField.Font = Enum.Font.Highway
  318. PumpkinField.FontSize = Enum.FontSize.Size28
  319. PumpkinField.Text = "Pumpkin Field"
  320. PumpkinField.TextColor3 = Color3.new(0, 0, 0)
  321. PumpkinField.TextScaled = true
  322. PumpkinField.TextSize = 25
  323. PumpkinField.TextWrapped = true
  324. PumpkinField.MouseButton1Down:connect(function()
  325. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-188.5,67,-183.8)
  326. end)
  327.  
  328. MountainTopField.Name = "MountainTopField"
  329. MountainTopField.Parent = OtherTeleportsFrame
  330. MountainTopField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  331. MountainTopField.BackgroundTransparency = 0.30000001192093
  332. MountainTopField.BorderSizePixel = 0
  333. MountainTopField.Position = UDim2.new(0.527513266, 0, 0.400921643, 0)
  334. MountainTopField.Size = UDim2.new(0, 91, 0, 27)
  335. MountainTopField.Font = Enum.Font.Highway
  336. MountainTopField.FontSize = Enum.FontSize.Size28
  337. MountainTopField.Text = "Mountain Top Field"
  338. MountainTopField.TextColor3 = Color3.new(0, 0, 0)
  339. MountainTopField.TextScaled = true
  340. MountainTopField.TextSize = 25
  341. MountainTopField.TextWrapped = true
  342. MountainTopField.MouseButton1Down:connect(function()
  343. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(77.6,175,-188.1)
  344. end)
  345.  
  346. PineappleField.Name = "PineappleField"
  347. PineappleField.Parent = OtherTeleportsFrame
  348. PineappleField.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  349. PineappleField.BackgroundTransparency = 0.30000001192093
  350. PineappleField.BorderSizePixel = 0
  351. PineappleField.Position = UDim2.new(0.527513266, 0, 0.557603717, 0)
  352. PineappleField.Size = UDim2.new(0, 91, 0, 27)
  353. PineappleField.Font = Enum.Font.Highway
  354. PineappleField.FontSize = Enum.FontSize.Size28
  355. PineappleField.Text = "Pineapple Field"
  356. PineappleField.TextColor3 = Color3.new(0, 0, 0)
  357. PineappleField.TextScaled = true
  358. PineappleField.TextSize = 25
  359. PineappleField.TextWrapped = true
  360. PineappleField.MouseButton1Down:connect(function()
  361. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(260.257,70.13,-198.07)
  362. end)
  363.  
  364.  
  365. MountainTopShop.Name = "MountainTopShop"
  366. MountainTopShop.Parent = OtherTeleportsFrame
  367. MountainTopShop.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  368. MountainTopShop.BackgroundTransparency = 0.30000001192093
  369. MountainTopShop.BorderSizePixel = 0
  370. MountainTopShop.Position = UDim2.new(0.775749564, 0, 0.244239628, 0)
  371. MountainTopShop.Size = UDim2.new(0, 91, 0, 27)
  372. MountainTopShop.Font = Enum.Font.Highway
  373. MountainTopShop.FontSize = Enum.FontSize.Size28
  374. MountainTopShop.Text = "Mountain Top Shop"
  375. MountainTopShop.TextColor3 = Color3.new(0, 0, 0)
  376. MountainTopShop.TextScaled = true
  377. MountainTopShop.TextSize = 25
  378. MountainTopShop.TextWrapped = true
  379. MountainTopShop.MouseButton1Down:connect(function()
  380. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-40, 176, -191.7)
  381. end)
  382.  
  383. RoyalJellyShop.Name = "RoyalJellyShop"
  384. RoyalJellyShop.Parent = OtherTeleportsFrame
  385. RoyalJellyShop.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  386. RoyalJellyShop.BackgroundTransparency = 0.30000001192093
  387. RoyalJellyShop.BorderSizePixel = 0
  388. RoyalJellyShop.Position = UDim2.new(0.775749564, 0, 0.396313369, 0)
  389. RoyalJellyShop.Size = UDim2.new(0, 91, 0, 27)
  390. RoyalJellyShop.Font = Enum.Font.Highway
  391. RoyalJellyShop.FontSize = Enum.FontSize.Size28
  392. RoyalJellyShop.Text = "Royal Jelly Shop"
  393. RoyalJellyShop.TextColor3 = Color3.new(0, 0, 0)
  394. RoyalJellyShop.TextScaled = true
  395. RoyalJellyShop.TextSize = 25
  396. RoyalJellyShop.TextWrapped = true
  397. RoyalJellyShop.MouseButton1Down:connect(function()
  398. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-297, 53, 68)
  399. end)
  400.  
  401. BeeShop.Name = "BeeShop"
  402. BeeShop.Parent = OtherTeleportsFrame
  403. BeeShop.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  404. BeeShop.BackgroundTransparency = 0.30000001192093
  405. BeeShop.BorderSizePixel = 0
  406. BeeShop.Position = UDim2.new(0.775749564, 0, 0.54838711, 0)
  407. BeeShop.Size = UDim2.new(0, 91, 0, 27)
  408. BeeShop.Font = Enum.Font.Highway
  409. BeeShop.FontSize = Enum.FontSize.Size28
  410. BeeShop.Text = "Bee Shop"
  411. BeeShop.TextColor3 = Color3.new(0, 0, 0)
  412. BeeShop.TextScaled = true
  413. BeeShop.TextSize = 25
  414. BeeShop.TextWrapped = true
  415. BeeShop.MouseButton1Down:connect(function()
  416. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-136.8, 4.6, 243.4)
  417. end)
  418.  
  419. BlueClubhouse.Name = "BlueClubhouse"
  420. BlueClubhouse.Parent = OtherTeleportsFrame
  421. BlueClubhouse.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  422. BlueClubhouse.BackgroundTransparency = 0.30000001192093
  423. BlueClubhouse.BorderSizePixel = 0
  424. BlueClubhouse.Position = UDim2.new(0.775749564, 0, 0.709677398, 0)
  425. BlueClubhouse.Size = UDim2.new(0, 91, 0, 27)
  426. BlueClubhouse.Font = Enum.Font.Highway
  427. BlueClubhouse.FontSize = Enum.FontSize.Size28
  428. BlueClubhouse.Text = "Blue Clubhouse"
  429. BlueClubhouse.TextColor3 = Color3.new(0, 0, 0)
  430. BlueClubhouse.TextScaled = true
  431. BlueClubhouse.TextSize = 25
  432. BlueClubhouse.TextWrapped = true
  433. BlueClubhouse.MouseButton1Down:connect(function()
  434. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(292, 4, 98)
  435. end)
  436.  
  437. RedClubhouse.Name = "RedClubhouse"
  438. RedClubhouse.Parent = OtherTeleportsFrame
  439. RedClubhouse.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  440. RedClubhouse.BackgroundTransparency = 0.30000001192093
  441. RedClubhouse.BorderSizePixel = 0
  442. RedClubhouse.Position = UDim2.new(0.775749564, 0, 0.861751139, 0)
  443. RedClubhouse.Size = UDim2.new(0, 91, 0, 27)
  444. RedClubhouse.Font = Enum.Font.Highway
  445. RedClubhouse.FontSize = Enum.FontSize.Size28
  446. RedClubhouse.Text = "Red Clubhouse"
  447. RedClubhouse.TextColor3 = Color3.new(0, 0, 0)
  448. RedClubhouse.TextScaled = true
  449. RedClubhouse.TextSize = 25
  450. RedClubhouse.TextWrapped = true
  451. RedClubhouse.MouseButton1Down:connect(function()
  452. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-334, 21, 216)
  453. end)
  454.  
  455.  
  456. Fields.Name = "Fields"
  457. Fields.Parent = OtherTeleportsFrame
  458. Fields.BackgroundColor3 = Color3.new(1, 1, 1)
  459. Fields.BackgroundTransparency = 1
  460. Fields.Position = UDim2.new(0, 0, 0.161290318, 0)
  461. Fields.Size = UDim2.new(0, 249, 0, 10)
  462. Fields.FontSize = Enum.FontSize.Size24
  463. Fields.Text = "Fields"
  464. Fields.TextColor3 = Color3.new(1, 1, 1)
  465. Fields.TextSize = 20
  466. Fields.TextWrapped = true
  467.  
  468. Misc.Name = "Misc"
  469. Misc.Parent = OtherTeleportsFrame
  470. Misc.BackgroundColor3 = Color3.new(1, 1, 1)
  471. Misc.BackgroundTransparency = 1
  472. Misc.Position = UDim2.new(0.580246925, 0, 0.161290318, 0)
  473. Misc.Size = UDim2.new(0, 249, 0, 10)
  474. Misc.FontSize = Enum.FontSize.Size24
  475. Misc.Text = "Misc"
  476. Misc.TextColor3 = Color3.new(1, 1, 1)
  477. Misc.TextSize = 20
  478. Misc.TextWrapped = true
  479.  
  480. Close.Name = "Close"
  481. Close.Parent = OtherTeleportsFrame
  482. Close.BackgroundColor3 = Color3.new(0.941177, 0, 0)
  483. Close.BackgroundTransparency = 0.30000001192093
  484. Close.BorderSizePixel = 0
  485. Close.Size = UDim2.new(0, 33, 0, 26)
  486. Close.Font = Enum.Font.SourceSans
  487. Close.FontSize = Enum.FontSize.Size32
  488. Close.Text = "X"
  489. Close.TextColor3 = Color3.new(1, 1, 1)
  490. Close.TextSize = 30
  491. Close.MouseButton1Down:connect(function()
  492. OtherTeleportsFrame.Visible = false
  493. end)
  494.  
  495. game:GetService("StarterGui"):SetCore("SendNotification",{
  496. Title = "Bee Swarm Simulator GUI",
  497. Text = "The GUI has loaded!\n\nMade by LiamGlitchesYT @ v3rm",
  498. Duration = 4,
  499. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement