Advertisement
NotExotic

Slap Battles

Sep 21st, 2023 (edited)
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "Bob UI",
  4. LoadingTitle = "Loading Bob UI",
  5. LoadingSubtitle = "by Bob YT",
  6. ConfigurationSaving = {
  7. Enabled = true,
  8. FolderName = nil, -- Create a custom folder for your hub/game
  9. FileName = "Bob Hub"
  10. },
  11. Discord = {
  12. Enabled = false,
  13. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  14. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  15. },
  16. KeySystem = false, -- Set this to true to use our key system
  17. KeySettings = {
  18. Title = "Untitled",
  19. Subtitle = "Key System",
  20. Note = "No method of obtaining the key is provided",
  21. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  22. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  23. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  24. 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")
  25. }
  26. })
  27.  
  28. local MainTab = Window:CreateTab("✋ Slap Battles ✋", nil)
  29. local MainSection = MainTab:CreateSection("✋ Slap Battles ✋")
  30.  
  31. local Button = MainTab:CreateButton({
  32. Name = "R20 Best 👍",
  33. Callback = function()
  34. loadstring(game:HttpGet("https://raw.githubusercontent.com/cheesynob39/R2O/main/LOADSTRING.lua"))()
  35. end,
  36. })
  37.  
  38. local Button = MainTab:CreateButton({
  39. Name = "Admin (Inf Yeild) 👍",
  40. Callback = function()
  41. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  42. end,
  43. })
  44. --WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
  45. local Button = MainTab:CreateButton({
  46. Name = "Anti-Void 👍",
  47. Callback = function()
  48. local part = Instance.new("Part")
  49. part.Size = Vector3.new(2000, 10, 2000)
  50. part.Position = Vector3.new(0, -13.5, 0) -- Y-position set to -13.5
  51. part.Anchored = true
  52. part.CanCollide = true
  53. part.BrickColor = BrickColor.new("Really black") -- Set the color to really black
  54. part.Transparency = 0.5 -- Set transparency to 50%
  55. part.Parent = game.Workspace
  56. end,
  57. })
  58.  
  59. local Button = MainTab:CreateButton({
  60. Name = "Sleep/Brick/Ghost Farm 👍",
  61. Callback = function()
  62. -- Create a new part at (1000, 100, 1000)
  63. local newPart = Instance.new("Part")
  64. newPart.Size = Vector3.new(10, 10, 10)
  65. newPart.Position = Vector3.new(10000, 100, 10000)
  66. newPart.Anchored = true -- To prevent it from falling down
  67. newPart.Parent = game.Workspace
  68.  
  69. -- Reference to the local player
  70. local player = game.Players.LocalPlayer
  71.  
  72. -- Check if the local player exists
  73. if player then
  74. -- Teleport the local player to (1000, 200, 1000)
  75. player.Character:MoveTo(Vector3.new(10000, 200, 10000))
  76. else
  77. print("Local player not found.")
  78. end
  79.  
  80. end,
  81. })
  82.  
  83. local Button = MainTab:CreateButton({
  84. Name = "Get REDACTED Badge (Need 5k slaps) 👍",
  85. Callback = function()
  86. local player = game.Players.LocalPlayer
  87. local character = player.Character
  88. local humanoid = character:FindFirstChild("Humanoid")
  89.  
  90. -- Check if the local player and their character exist
  91. if player and character and humanoid then
  92. -- Teleport the character to a position in the Workspace (adjust the coordinates)
  93. character:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-92, -28135, 6)))
  94. else
  95. print("Local player, character, or humanoid not found.")
  96. end
  97.  
  98.  
  99. end,
  100. })
  101.  
  102. local Button = MainTab:CreateButton({
  103. Name = "Reset/Enable Walk 👍",
  104. Callback = function()
  105. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  106. end,
  107. })
  108.  
  109. local Button = MainTab:CreateButton({
  110. Name = "Reset/Enable Jump 👍",
  111. Callback = function()
  112. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  113. end,
  114. })
  115.  
  116. local Slider = MainTab:CreateSlider({
  117. Name = "Walk Speed",
  118. Range = {0, 69},
  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 = MainTab:CreateSlider({
  129. Name = "Jump Power",
  130. Range = {0, 200},
  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.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement