Advertisement
Cizzy

Untitled

May 4th, 2021
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(0, 51, 255)
  2. _G.SliderColor = Color3.fromRGB(0, 51, 255)
  3. _G.ButtonColor = Color3.fromRGB(255, 34, 0)
  4.  
  5. local library = loadstring(game:HttpGet(("https://pastebin.com/raw/FsJak6AT")))() -- It's obfuscated, I won't let you see my ugly coding skills. =)
  6.  
  7. local w = library:CreateWindow("Beeface")
  8.  
  9. local b = w:CreateFolder("Functions")
  10. b:Label("~Functions~", Color3.fromRGB(38, 38, 38), Color3.fromRGB(255, 34, 0))
  11.  
  12. b:Toggle(
  13. "Auto Convert Honey",
  14. function(bool)
  15. AutoSell = bool
  16. end
  17. )
  18.  
  19. b:Slider(
  20. "BeeJumppower",
  21. 10,
  22. 300,
  23. true,
  24. function(value)
  25. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = (value)
  26. end
  27. )
  28.  
  29. b:Slider(
  30. "BeeSpeed",
  31. 10,
  32. 300,
  33. true,
  34. function(value)
  35. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = (value)
  36. end
  37. )
  38. b:Button(
  39. "Inf Jump",
  40. function()
  41. game:GetService("UserInputService").JumpRequest:connect(
  42. function()
  43. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
  44. end
  45. )
  46. end
  47. )
  48. b:Label("~Upgrades~", Color3.fromRGB(38, 38, 38), Color3.fromRGB(255, 34, 0))
  49. b:Toggle(
  50. "Player Speed",
  51. function(bool)
  52. PlayerSpeed = bool
  53. end
  54. )
  55. b:Toggle(
  56. "Honey Conversion Rate",
  57. function(bool)
  58. HoneyConversion = bool
  59. end
  60. )
  61. b:Toggle(
  62. "Worker Speed",
  63. function(bool)
  64. WorkerSpeed = bool
  65. end
  66. )
  67. b:Toggle(
  68. "Worker Capacity",
  69. function(bool)
  70. WorkerCapacity = bool
  71. end
  72. )
  73.  
  74. spawn(
  75. function()
  76. while wait() do
  77. if AutoSell then
  78. game.Workspace.Beehive.HitBox.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  79. end
  80. end
  81. end
  82. )
  83. -- Upgrades
  84. spawn(
  85. function()
  86. while wait(.2) do
  87. if PlayerSpeed then
  88. game:GetService("ReplicatedStorage").UpgradeRequest:FireServer("speedMultiplierUpgrades")
  89. end
  90. end
  91. end
  92. )
  93.  
  94. spawn(
  95. function()
  96. while wait(.2) do
  97. if HoneyConversion then
  98. game:GetService("ReplicatedStorage").UpgradeRequest:FireServer("honeyMultiplierUpgrades")
  99. end
  100. end
  101. end
  102. )
  103.  
  104. spawn(
  105. function()
  106. while wait(.2) do
  107. if WorkerSpeed then
  108. game:GetService("ReplicatedStorage").UpgradeRequest:FireServer("workerSpeedUpgrades")
  109. end
  110. end
  111. end
  112. )
  113.  
  114. spawn(
  115. function()
  116. while wait(.2) do
  117. if WorkerCapacity then
  118. game:GetService("ReplicatedStorage").UpgradeRequest:FireServer("workerCapacityUpgrades")
  119. end
  120. end
  121. end
  122. )
  123.  
  124. local MISC = w:CreateFolder("Misc")
  125.  
  126. MISC:Button(
  127. "Rejoin",
  128. function()
  129. local TeleportService = game:GetService("TeleportService")
  130. local PlaceId = game.PlaceId
  131. local player = game.Players.LocalPlayer
  132. if player then
  133. TeleportService:Teleport(PlaceId, player)
  134. end
  135. end
  136. )
  137.  
  138. MISC:GuiSettings()
  139.  
  140. local CS = w:CreateFolder("Credits")
  141.  
  142. CS:Label("Made By: Bebo Mods", Color3.fromRGB(38, 38, 38), Color3.fromRGB(255, 34, 0))
  143. CS:Label("Discord Bebo Mods#1532", Color3.fromRGB(38, 38, 38), Color3.fromRGB(255, 34, 0))
  144. CS:Label("YouTube Channel Bebo Mods", Color3.fromRGB(38, 38, 38), Color3.fromRGB(255, 34, 0))
  145. CS:Label("Thanks For Using My Scripts", Color3.fromRGB(38, 38, 38), Color3.fromRGB(255, 34, 0))
  146. CS:Button(
  147. "Discord Server Link",
  148. function()
  149. setclipboard("https://discord.gg/mTC5yP5ay8")
  150. end
  151. )
  152. CS:DestroyGUI()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement