Advertisement
1zxyuuki

Losy

Oct 8th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 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 switchdelay = 4
  5.  
  6. local wrk = game:GetService("Workspace")
  7. local plr = game:GetService("Players").LocalPlayer
  8.  
  9. local folder = wrk:FindFirstChild("MAP")
  10. local folder2 = folder:FindFirstChild("WanderingSouls")
  11.  
  12. local f1 = folder:GetChildren()
  13. local f2 = folder2:GetChildren()
  14.  
  15. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  16.  
  17. local Window = Rayfield:CreateWindow({
  18. Name = "▶ Lost Souls ◀",
  19. LoadingTitle = "Loading...",
  20. LoadingSubtitle = "by Agreed 🥵",
  21. ConfigurationSaving = {
  22. Enabled = false,
  23. FolderName = "lostsouls",
  24. FileName = "byAgreed"
  25. },
  26. })
  27.  
  28. local Main = Window:CreateTab("Main")
  29.  
  30. local Toggle = Main:CreateToggle({
  31. Name = "Wandering Soul Farm",
  32. CurrentValue = false,
  33. Flag = "",
  34. Callback = function(Value)
  35. _G.farm = Value
  36. if Value then
  37. Rayfield:Notify({Title = "Wandering Soul Farm", Content = "Enabled", Duration = 1, Image = 4483362458,})
  38. elseif not Value then
  39. Rayfield:Notify({Title = "Wandering Soul Farm", Content = "Disabled", Duration = 1, Image = 4483362458,})
  40. end
  41. while _G.farm do
  42. if folder then
  43. for _, v in ipairs(f1) do
  44. if v.Name == "WanderingSoul" then
  45. if not _G.farm then break end
  46. local hrp = v:FindFirstChild("HumanoidRootPart")
  47. if hrp then
  48. hrp.ProximityPrompt.HoldDuration = 0
  49. plr.Character:MoveTo(hrp.Position)
  50. wait(0.2)
  51. if hrp then
  52. fireproximityprompt(hrp.ProximityPrompt)
  53. end
  54. end
  55. wait(switchdelay)
  56. end
  57. end
  58. end
  59. if folder2 then
  60. for _, v in ipairs(f2) do
  61. if v.Name == "WanderingSoul" then
  62. if not _G.farm then break end
  63. local hrp = v:FindFirstChild("HumanoidRootPart")
  64. if hrp then
  65. hrp.ProximityPrompt.HoldDuration = 0
  66. plr.Character:MoveTo(hrp.Position)
  67. wait(0.2)
  68. if hrp then
  69. fireproximityprompt(hrp.ProximityPrompt)
  70. end
  71. end
  72. wait(switchdelay)
  73. end
  74. end
  75. end
  76. wait()
  77. end
  78. end
  79. })
  80.  
  81. local Slider = Main:CreateSlider({
  82. Name = "Delay",
  83. Range = {0, 10},
  84. Increment = .1,
  85. CurrentValue = 4,
  86. Flag = "",
  87. Callback = function(Value)
  88. switchdelay = Value
  89. end,
  90. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement