Advertisement
NotExotic

BOB UI YAY not Finished

Sep 21st, 2023 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.51 KB | None | 0 0
  1. --THE WEBSITE https://docs.sirius.menu/rayfield/configuration/windows
  2.  
  3. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  4. local Window = Rayfield:CreateWindow({
  5. Name = "Bob UI",
  6. LoadingTitle = "Loading Bob UI",
  7. LoadingSubtitle = "by Bob YT",
  8. ConfigurationSaving = {
  9. Enabled = true,
  10. FolderName = nil, -- Create a custom folder for your hub/game
  11. FileName = "Bob Hub"
  12. },
  13. Discord = {
  14. Enabled = false,
  15. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  16. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  17. },
  18. KeySystem = false, -- Set this to true to use our key system
  19. KeySettings = {
  20. Title = "Untitled",
  21. Subtitle = "Key System",
  22. Note = "No method of obtaining the key is provided",
  23. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  24. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  25. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  26. Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  27. }
  28. })
  29. -- WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  30. local MainTab = Window:CreateTab("✋ Slap Battles ✋", nil) -- Title, Image
  31. local OtherTab = Window:CreateTab("🗿 Other 🗿", nil) -- Title, Image
  32. local OtherBitTab = Window:CreateTab("🏝 OTHER GUI 🏝", nil) -- Title, Image
  33. local LarryTab = Window:CreateTab("💂🏻‍♂️ Larry's Prison 💂🏻‍♂️", nil) -- Title, Image
  34. local BikeTab = Window:CreateTab("🚲 Obby but your on a bike 🚲", nil) -- Title, Image
  35. local MainSection = MainTab:CreateSection("✋ Slap Battles ✋")
  36. local LarrySection = LarryTab:CreateSection("💂🏻‍♂️ Larry's Prison 💂🏻‍♂️")
  37. local OtherBitSection = OtherBitTab:CreateSection("🏝 OTHER GUI 🏝")
  38. local OtherSection = OtherTab:CreateSection("🗿 Other 🗿")
  39. local BikeSection = BikeTab:CreateSection("🚲 Obby but your on a bike 🚲")
  40.  
  41. Rayfield:Notify({
  42. Title = "Hey",
  43. Content = "Idk",
  44. Duration = 2.5,
  45. Image = nil,
  46. Actions = { -- Notification Buttons
  47. Ignore = {
  48. Name = "Okay!",
  49. Callback = function()
  50. print("The user tapped Okay!")
  51. end
  52. },
  53. },
  54. })
  55. -- WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  56. local Button = MainTab:CreateButton({
  57. Name = "R20 Best 👍",
  58. Callback = function()
  59. loadstring(game:HttpGet("https://raw.githubusercontent.com/cheesynob39/R2O/main/LOADSTRING.lua"))()
  60. end,
  61. })
  62.  
  63. local Button = MainTab:CreateButton({
  64. Name = "Admin (Inf Yeild) 👍",
  65. Callback = function()
  66. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  67. end,
  68. })
  69. --WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  70. local Button = MainTab:CreateButton({
  71. Name = "Anti-Void 👍",
  72. Callback = function()
  73. local part = Instance.new("Part")
  74. part.Size = Vector3.new(2000, 10, 2000)
  75. part.Position = Vector3.new(0, -13.5, 0) -- Y-position set to -13.5
  76. part.Anchored = true
  77. part.CanCollide = true
  78. part.BrickColor = BrickColor.new("Really black") -- Set the color to really black
  79. part.Transparency = 0.5 -- Set transparency to 50%
  80. part.Parent = game.Workspace
  81. end,
  82. })
  83.  
  84. local Button = MainTab:CreateButton({
  85. Name = "Reset/Enable Walk 👍",
  86. Callback = function()
  87. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  88. end,
  89. })
  90.  
  91. local Button = MainTab:CreateButton({
  92. Name = "Reset/Enable Jump 👍",
  93. Callback = function()
  94. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  95. end,
  96. })
  97.  
  98.  
  99.  
  100. --WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  101.  
  102. local Button = OtherTab:CreateButton({
  103. Name = "Reset/Enable Walk 👍",
  104. Callback = function()
  105. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  106. end,
  107. })
  108.  
  109. local Button = OtherTab:CreateButton({
  110. Name = "Reset/Enable Jump 👍",
  111. Callback = function()
  112. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  113. end,
  114. })
  115.  
  116. local Slider = OtherTab:CreateSlider({
  117. Name = "Walk Speed",
  118. Range = {0, 500},
  119. Increment = 1,
  120. Suffix = "Speed",
  121. CurrentValue = 16,
  122. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  123. Callback = function(Value)
  124. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  125. end,
  126. })
  127.  
  128. local Slider = OtherTab:CreateSlider({
  129. Name = "Jump Power",
  130. Range = {0, 1000},
  131. Increment = 1,
  132. Suffix = "Jump",
  133. CurrentValue = 50,
  134. Flag = "Slider2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  135. Callback = function(Value)
  136. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  137. end,
  138. })
  139.  
  140.  
  141.  
  142. --WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  143.  
  144. local Slider = MainTab:CreateSlider({
  145. Name = "Walk Speed",
  146. Range = {0, 69},
  147. Increment = 1,
  148. Suffix = "Speed",
  149. CurrentValue = 16,
  150. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  151. Callback = function(Value)
  152. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  153. end,
  154. })
  155.  
  156. local Slider = MainTab:CreateSlider({
  157. Name = "Jump Power",
  158. Range = {0, 200},
  159. Increment = 1,
  160. Suffix = "Jump",
  161. CurrentValue = 50,
  162. Flag = "Slider2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  163. Callback = function(Value)
  164. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  165. end,
  166. })
  167.  
  168. local Button = OtherTab:CreateButton({
  169. Name = "Lines Esp 👍",
  170. Callback = function()
  171. loadstring(game:HttpGet('https://pastebin.com/raw/JPsrp7L6'))()
  172. end,
  173. })
  174.  
  175. local Button = OtherTab:CreateButton({
  176. Name = "ScreenGUI Esp 👍",
  177. Callback = function()
  178. loadstring(game:HttpGet('https://pastebin.com/raw/GWtaZFLF'))()
  179. end,
  180. })
  181.  
  182.  
  183.  
  184. -- WWWWWWWWWWWWWWWWWWWWWW
  185.  
  186. local Button = OtherTab:CreateButton({
  187. Name = "Esp Hitboxes 👍",
  188. Callback = function()
  189. loadstring(game:HttpGet('https://pastebin.com/raw/JNk5ueqB'))()
  190. end,
  191. })
  192.  
  193. local Button = OtherTab:CreateButton({
  194. Name = "Aimbot (Right Click Use) 👍",
  195. Callback = function()
  196. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  197. end,
  198. })
  199.  
  200.  
  201. local Button = OtherTab:CreateButton({
  202. Name = "Fly (F To Use) 👍",
  203. Callback = function()
  204. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  205. end,
  206. })
  207.  
  208. local Button = OtherTab:CreateButton({
  209. Name = "Noclip (Hold R To Use) 👍",
  210. Callback = function()
  211. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  212. end,
  213. })
  214.  
  215. local Button = BikeTab:CreateButton({
  216. Name = "Noclip (Hold R To Use) 👍",
  217. Callback = function()
  218. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  219. end,
  220. })
  221.  
  222.  
  223. --2 WWWWWWWWWW noclip under hereWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  224.  
  225. local userInputService = game:GetService("UserInputService")
  226.  
  227. local isHoldingR = false
  228.  
  229. local function toggleCollision()
  230. for _, object in pairs(workspace:GetDescendants()) do
  231. if object:IsA("BasePart") then
  232. object.CanCollide = not isHoldingR
  233. end
  234. end
  235. end
  236.  
  237. userInputService.InputBegan:Connect(function(input, gameProcessedEvent)
  238. if not gameProcessedEvent and input.KeyCode == Enum.KeyCode.R then
  239. isHoldingR = true
  240. toggleCollision()
  241. end
  242. end)
  243.  
  244. userInputService.InputEnded:Connect(function(input, gameProcessedEvent)
  245. if input.KeyCode == Enum.KeyCode.R then
  246. isHoldingR = false
  247. toggleCollision()
  248. end
  249. end)
  250.  
  251. local Button = BikeTab:CreateButton({
  252. Name = "1st Anti-Void 👍",
  253. Callback = function() -- 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  254. -- Reference to the RunService
  255. local runService = game:GetService("RunService")
  256.  
  257. -- Create a new part
  258. local newPart = Instance.new("Part")
  259. newPart.Anchored = true -- To prevent it from falling down
  260.  
  261. -- Function to update the part's position
  262. local function updatePartPosition()
  263. local localPlayer = game.Players.LocalPlayer
  264. if localPlayer then
  265. local character = localPlayer.Character
  266. if character and character:FindFirstChild("HumanoidRootPart") then
  267. local newPosition = character.HumanoidRootPart.Position
  268. newPart.Position = Vector3.new(newPosition.X, 0, newPosition.Z)
  269. end
  270. end
  271. end
  272.  
  273. -- Connect the updatePartPosition function to the heartbeat of the RunService
  274. runService.Heartbeat:Connect(updatePartPosition)
  275.  
  276. -- Parent the new part to the workspace (you can change the parent as needed)
  277. newPart.Parent = game.Workspace
  278. -- 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  279. end,
  280. })
  281.  
  282. local Button = BikeTab:CreateButton({
  283. Name = "2nd Anti-Void 👍",
  284. Callback = function() -- 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  285. -- Reference to the RunService
  286. local runService = game:GetService("RunService")
  287.  
  288. -- Create a new part
  289. local newPart = Instance.new("Part")
  290. newPart.Anchored = true -- To prevent it from falling down
  291. newPart.Name = ("WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW")
  292.  
  293. -- Function to update the part's position
  294. local function updatePartPosition()
  295. local localPlayer = game.Players.LocalPlayer
  296. if localPlayer then
  297. local character = localPlayer.Character
  298. if character and character:FindFirstChild("HumanoidRootPart") then
  299. local newPosition = character.HumanoidRootPart.Position
  300. newPart.Position = Vector3.new(newPosition.X, 25, newPosition.Z)
  301. end
  302. end
  303. end
  304.  
  305. -- Connect the updatePartPosition function to the heartbeat of the RunService
  306. runService.Heartbeat:Connect(updatePartPosition)
  307.  
  308. -- Parent the new part to the workspace (you can change the parent as needed)
  309. newPart.Parent = game.Workspace
  310. -- 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  311. end,
  312. })
  313.  
  314. local Button = BikeTab:CreateButton({
  315. Name = "Deletes Anti-Voids 👍",
  316. Callback = function()
  317. loadstring(game:HttpGet(https://"pastebin.com/raw/ASG8g7v3"))()
  318. end,
  319. })
  320.  
  321. local Button = BikeTab:CreateButton({
  322. Name = "No KillBricks 👍",
  323. Callback = function()
  324. loadstring(game:HttpGet('https://pastebin.com/raw/5isQ0cgV'))()
  325. end,
  326. })
  327.  
  328. local Button = BikeTab:CreateButton({
  329. Name = "No Ads 👍",
  330. Callback = function()
  331. loadstring(game:HttpGet('https://pastebin.com/raw/yTFeMBfV'))()
  332. end,
  333. })
  334.  
  335. local Button = BikeTab:CreateButton({
  336. Name = "No Spining Bars 👍",
  337. Callback = function()
  338. loadstring(game:HttpGet('https://pastebin.com/raw/brEcvECG'))()
  339. end,
  340. })
  341.  
  342. local Button = BikeTab:CreateButton({
  343. Name = "No SwingingBalls 👍",
  344. Callback = function()
  345. loadstring(game:HttpGet('https://pastebin.com/raw/fu9ZMG5p'))()
  346. end,
  347. })
  348.  
  349. local Button = BikeTab:CreateButton({
  350. Name = "No Fans (Might no be possible for some levels) 👍",
  351. Callback = function()
  352. -- Find the folder you want to delete
  353. local worldMap = game.Workspace.WorldMap
  354. local FansFolder = worldMap:FindFirstChild("Fans")
  355.  
  356. -- Check if the folder exists
  357. if FansFolder then
  358. -- Destroy the folder and its contents
  359. FansFolder:Destroy()
  360. print("Fans folder has been deleted.")
  361. else
  362. print("Fans folder not found.")
  363. end
  364.  
  365. end,
  366. })
  367.  
  368. local Button = LarryTab:CreateButton({
  369. Name = "Teleport To End 👍",
  370. Callback = function()
  371. -- Reference to the local player
  372. local localPlayer = game.Players.LocalPlayer
  373.  
  374. -- Coordinates to move the player to
  375. local newPosition = Vector3.new(-3779, 1000, -492)
  376.  
  377. -- Check if the local player exists and the coordinates are valid
  378. if localPlayer and newPosition then
  379. -- Check if the player has a character
  380. local character = localPlayer.Character
  381. if character and character:IsA("Model") and character:FindFirstChild("HumanoidRootPart") then
  382. -- Set the position of the player's character
  383. character:MoveTo(newPosition)
  384. print("Local player moved to the new position!")
  385. else
  386. print("Local player's character not found.")
  387. end
  388. else
  389. print("Local player not found or invalid coordinates.")
  390. end
  391.  
  392. end,
  393. })
  394.  
  395. local Button = LarryTab:CreateButton({
  396. Name = "Get Doom / Night Sky 👍",
  397. Callback = function()
  398. -- Doom / Night Sky
  399. local player = game.Players.LocalPlayer
  400.  
  401. -- Save the player's current position
  402. local savedPosition = player.Character and player.Character:FindFirstChild("HumanoidRootPart") and player.Character.HumanoidRootPart.Position
  403.  
  404. -- Check if the saved position is valid
  405. if savedPosition then
  406. -- Teleport the player to position (0, 100, 0)
  407. player.Character:MoveTo(Vector3.new(139, 100, -139))
  408.  
  409. -- Wait for a moment (you can adjust this delay as needed)
  410. wait(.2)
  411.  
  412. -- Teleport the player back to the saved position
  413. player.Character:MoveTo(savedPosition)
  414. else
  415. print("Player's position could not be saved or is invalid.")
  416. end
  417.  
  418. end,
  419. })
  420.  
  421. local Button = LarryTab:CreateButton({
  422. Name = "Get Super Speed 👍",
  423. Callback = function()
  424. -- Speed
  425. local player = game.Players.LocalPlayer
  426.  
  427. -- Save the player's current position
  428. local savedPosition = player.Character and player.Character:FindFirstChild("HumanoidRootPart") and player.Character.HumanoidRootPart.Position
  429.  
  430. -- Check if the saved position is valid
  431. if savedPosition then
  432. -- Teleport the player to position (0, 100, 0)
  433. player.Character:MoveTo(Vector3.new(138, 100, -156))
  434.  
  435. -- Wait for a moment (you can adjust this delay as needed)
  436. wait(.2)
  437.  
  438. -- Teleport the player back to the saved position
  439. player.Character:MoveTo(savedPosition)
  440. else
  441. print("Player's position could not be saved or is invalid.")
  442. end
  443.  
  444. end,
  445. })
  446.  
  447. local Button = LarryTab:CreateButton({
  448. Name = "Get Super Jump 👍",
  449. Callback = function()
  450. -- Jump
  451. local player = game.Players.LocalPlayer
  452.  
  453. -- Save the player's current position
  454. local savedPosition = player.Character and player.Character:FindFirstChild("HumanoidRootPart") and player.Character.HumanoidRootPart.Position
  455.  
  456. -- Check if the saved position is valid
  457. if savedPosition then
  458. -- Teleport the player to position (0, 100, 0)
  459. player.Character:MoveTo(Vector3.new(138, 100, -172))
  460.  
  461. -- Wait for a moment (you can adjust this delay as needed)
  462. wait(.2)
  463.  
  464. -- Teleport the player back to the saved position
  465. player.Character:MoveTo(savedPosition)
  466. else
  467. print("Player's position could not be saved or is invalid.")
  468. end
  469.  
  470. end,
  471. })
  472.  
  473. local Button = LarryTab:CreateButton({
  474. Name = "Get Low Gravity 👍",
  475. Callback = function()
  476. -- Low Grav
  477. local player = game.Players.LocalPlayer
  478.  
  479. -- Save the player's current position
  480. local savedPosition = player.Character and player.Character:FindFirstChild("HumanoidRootPart") and player.Character.HumanoidRootPart.Position
  481.  
  482. -- Check if the saved position is valid
  483. if savedPosition then
  484. -- Teleport the player to position (0, 100, 0)
  485. player.Character:MoveTo(Vector3.new(138, 100, -188))
  486.  
  487. -- Wait for a moment (you can adjust this delay as needed)
  488. wait(.2)
  489.  
  490. -- Teleport the player back to the saved position
  491. player.Character:MoveTo(savedPosition)
  492. else
  493. print("Player's position could not be saved or is invalid.")
  494. end
  495.  
  496. end,
  497. })
  498.  
  499. local Button = LarryTab:CreateButton({
  500. Name = "Teleport to Guard Room 👍",
  501. Callback = function()
  502. -- Guard Place
  503. local localPlayer = game.Players.LocalPlayer
  504.  
  505. -- Coordinates to move the player to
  506. local newPosition = Vector3.new(197, 100, -55)
  507.  
  508. -- Check if the local player exists and the coordinates are valid
  509. if localPlayer and newPosition then
  510. -- Check if the player has a character
  511. local character = localPlayer.Character
  512. if character and character:IsA("Model") and character:FindFirstChild("HumanoidRootPart") then
  513. -- Set the position of the player's character
  514. character:MoveTo(newPosition)
  515. print("Local player moved to the new position!")
  516. else
  517. print("Local player's character not found.")
  518. end
  519. else
  520. print("Local player not found or invalid coordinates.")
  521. end
  522.  
  523. end,
  524. })
  525.  
  526. local Button = OtherBitTab:CreateButton({
  527. Name = "OTHER GUI 👍",
  528. Callback = function()
  529. loadstring(game:HttpGet("https://pastebin.com/raw/FKV3U7en"))()
  530. end,
  531. })
  532.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement