Advertisement
NotExotic

Other / aimbot

Sep 21st, 2023
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 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 OtherTab = Window:CreateTab("🗿 Other 🗿", nil) -- Title, Image
  29. local OtherSection = OtherTab:CreateSection("🗿 Other 🗿")
  30.  
  31. local Button = OtherTab:CreateButton({
  32. Name = "Reset/Enable Walk 👍",
  33. Callback = function()
  34. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  35. end,
  36. })
  37.  
  38. local Button = OtherTab:CreateButton({
  39. Name = "Reset/Enable Jump 👍",
  40. Callback = function()
  41. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  42. end,
  43. })
  44.  
  45. local Slider = OtherTab:CreateSlider({
  46. Name = "Walk Speed",
  47. Range = {0, 500},
  48. Increment = 1,
  49. Suffix = "Speed",
  50. CurrentValue = 16,
  51. 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
  52. Callback = function(Value)
  53. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  54. end,
  55. })
  56.  
  57. local Slider = OtherTab:CreateSlider({
  58. Name = "Jump Power",
  59. Range = {0, 1000},
  60. Increment = 1,
  61. Suffix = "Jump",
  62. CurrentValue = 50,
  63. 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
  64. Callback = function(Value)
  65. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  66. end,
  67. })
  68.  
  69. local Button = OtherTab:CreateButton({
  70. Name = "Lines Esp 👍",
  71. Callback = function()
  72. loadstring(game:HttpGet('https://pastebin.com/raw/JPsrp7L6'))()
  73. end,
  74. })
  75.  
  76. local Button = OtherTab:CreateButton({
  77. Name = "ScreenGUI Esp 👍",
  78. Callback = function()
  79. loadstring(game:HttpGet('https://pastebin.com/raw/GWtaZFLF'))()
  80. end,
  81. })
  82.  
  83.  
  84.  
  85. -- WWWWWWWWWWWWWWWWWWWWWW
  86.  
  87. local Button = OtherTab:CreateButton({
  88. Name = "Esp Hitboxes 👍",
  89. Callback = function()
  90. loadstring(game:HttpGet('https://pastebin.com/raw/JNk5ueqB'))()
  91. end,
  92. })
  93.  
  94. local Button = OtherTab:CreateButton({
  95. Name = "Aimbot (Right Click Use) 👍",
  96. Callback = function()
  97. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  98. end,
  99. })
  100.  
  101.  
  102. local Button = OtherTab:CreateButton({
  103. Name = "Fly (F To Use) 👍",
  104. Callback = function()
  105. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  106. end,
  107. })
  108.  
  109. local Button = OtherTab:CreateButton({
  110. Name = "Noclip (Hold R To Use) 👍",
  111. Callback = function()
  112. loadstring(game:HttpGet('https://pastebin.com/raw/XYMgJX7r'))()
  113. end,
  114. })
  115.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement