Advertisement
Sufferrrrrr

GEF

Dec 13th, 2024
3,568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.51 KB | None | 0 0
  1. --[[
  2.     WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/slf0Dev/Ocerium_Project/main/Library.lua"))()
  5. local Window = Library.Main("Bob Hub", "LeftAlt")
  6.  
  7. -- Main Tab
  8. local MainTab = Window.NewTab("Main")
  9.  
  10. -- Food Section
  11. local FoodSection = MainTab.NewSection("Food")
  12. FoodSection.NewButton("Food", function()
  13.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  14.     rootPart.CFrame = game:GetService("Workspace").Pickups.Food.CFrame
  15.     print("Teleported to Food!")
  16. end)
  17. FoodSection.NewButton("Soda", function()
  18.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  19.     rootPart.CFrame = game:GetService("Workspace").Pickups.Soda.CFrame
  20.     print("Teleported to Soda!")
  21. end)
  22. FoodSection.NewButton("Medkit", function()
  23.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  24.     rootPart.CFrame = game:GetService("Workspace").Pickups.Medkit.CFrame
  25.     print("Teleported to Medkit!")
  26. end)
  27.  
  28. -- Weapon Section
  29. local WeaponSection = MainTab.NewSection("Weapon")
  30. WeaponSection.NewButton("Bat", function()
  31.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  32.     rootPart.CFrame = game:GetService("Workspace").Pickups.Bat.CFrame
  33.     print("Teleported to Bat!")
  34. end)
  35. WeaponSection.NewButton("Crowbar", function()
  36.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  37.     rootPart.CFrame = game:GetService("Workspace").Pickups.Crowbar.CFrame
  38.     print("Teleported to Crowbar!")
  39. end)
  40.  
  41. -- Gun Section
  42. local GunSection = MainTab.NewSection("Gun")
  43. GunSection.NewButton("Handgun", function()
  44.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  45.     rootPart.CFrame = game:GetService("Workspace").Pickups.Handgun.CFrame
  46.     print("Teleported to Handgun!")
  47. end)
  48. GunSection.NewButton("Shotgun", function()
  49.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  50.     rootPart.CFrame = game:GetService("Workspace").Pickups.Shotgun.CFrame
  51.     print("Teleported to Shotgun!")
  52. end)
  53. GunSection.NewButton("Shells", function()
  54.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  55.     rootPart.CFrame = game:GetService("Workspace").Pickups.Shells.CFrame
  56.     print("Teleported to Shells!")
  57. end)
  58.  
  59. -- Reach Section
  60. local ReachSection = MainTab.NewSection("Reach")
  61. ReachSection.NewButton("Reach 10", function()
  62.     for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  63.         if v:IsA("Tool") then
  64.             local selectionBox = Instance.new("SelectionBox", v.Handle)
  65.             selectionBox.Adornee = v.Handle
  66.             v.Handle.Size = Vector3.new(10, 10, 10)
  67.             v.GripPos = Vector3.new(0, 0, 0)
  68.         end
  69.     end
  70.     print("Reach set to 10!")
  71. end)
  72. ReachSection.NewButton("Reach 20", function()
  73.     for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  74.         if v:IsA("Tool") then
  75.             local selectionBox = Instance.new("SelectionBox", v.Handle)
  76.             selectionBox.Adornee = v.Handle
  77.             v.Handle.Size = Vector3.new(20, 20, 20)
  78.             v.GripPos = Vector3.new(0, 0, 0)
  79.         end
  80.     end
  81.     print("Reach set to 20!")
  82. end)
  83.  
  84. -- Other Section
  85. local OtherSection = MainTab.NewSection("Other")
  86. OtherSection.NewButton("Hammer", function()
  87.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  88.     rootPart.CFrame = game:GetService("Workspace").Pickups.Hammer.CFrame
  89.     print("Teleported to Hammer!")
  90. end)
  91. OtherSection.NewButton("Lantern", function()
  92.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  93.     rootPart.CFrame = game:GetService("Workspace").Pickups.Lantern.CFrame
  94.     print("Teleported to Lantern!")
  95. end)
  96. OtherSection.NewButton("GPS", function()
  97.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  98.     rootPart.CFrame = game:GetService("Workspace").Pickups.GPS.CFrame
  99.     print("Teleported to GPS!")
  100. end)
  101. OtherSection.NewButton("Money", function()
  102.     local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  103.     rootPart.CFrame = game:GetService("Workspace").Pickups.Money.CFrame
  104.     print("Teleported to Money!")
  105. end)
  106. OtherSection.NewButton("Fullbright", function()
  107.     game:GetService("Lighting").Brightness = 1
  108.     game:GetService("Lighting").ClockTime = 12
  109.     game:GetService("Lighting").FogEnd = 786543
  110.     game:GetService("Lighting").GlobalShadows = false
  111.     print("Fullbright enabled!")
  112. end)
  113.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement