Advertisement
Reksplay

Steal fish full code (?)

Jul 1st, 2025 (edited)
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. -- Load Rayfield Library
  2. local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
  3.  
  4. -- Create Main Window
  5. local Window = Rayfield:CreateWindow({
  6. Name = "Reks - Steal A Fish",
  7. LoadingTitle = "Reks - Steal A Fish",
  8. LoadingSubtitle = "Made by ReksPlay",
  9. ConfigurationSaving = {
  10. Enabled = false
  11. },
  12. KeySystem = false
  13. })
  14.  
  15. -- Info Tab
  16. local InfoTab = Window:CreateTab("Info", 4483362458)
  17. InfoTab:CreateParagraph({
  18. Title = "📌 Features",
  19. Content = [[
  20. 🔒 Lock Base: TP to base, bounce & return
  21. ⚡ Speed Boost: Boosts your walk speed
  22. 💰 Auto Collect Money (coming soon)
  23. 🐟 Instant Steal Fish (fully working!)
  24. 🧱 Remove Walls/Glass: Deletes parts to steal easily
  25. ⚡ Instant Interact: Triggers all proximity prompts
  26.  
  27. Thanks for using Reks - Steal A Fish!
  28. Join our Discord to stay updated.
  29. ]]
  30. })
  31.  
  32. -- Main Tab
  33. local MainTab = Window:CreateTab("Main", 4483362458)
  34.  
  35. MainTab:CreateParagraph({
  36. Title = "Important Info",
  37. Content = "Use Speed Boost when stealing\nUse Lock Base if you're far\nInstant Steal Fish works now!\nAuto collect is still coming soon."
  38. })
  39.  
  40. -- Speed Boost
  41. local defaultSpeed = 16
  42. MainTab:CreateToggle({
  43. Name = "⚡ Speed Boost (Use to steal fast)",
  44. CurrentValue = false,
  45. Callback = function(state)
  46. local char = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
  47. local hum = char:FindFirstChildOfClass("Humanoid")
  48. if hum then
  49. hum.WalkSpeed = state and 60 or defaultSpeed
  50. end
  51. end
  52. })
  53.  
  54. -- Lock Base (TP to base, bounce, then return)
  55. MainTab:CreateButton({
  56. Name = "🔒 Lock Base",
  57. Callback = function()
  58. local player = game.Players.LocalPlayer
  59. local char = player.Character or player.CharacterAdded:Wait()
  60. local hrp = char:WaitForChild("HumanoidRootPart")
  61. local originalPos = hrp.Position
  62.  
  63. local basePos = Vector3.new(-54.81, 6.00, 15.66)
  64. hrp.CFrame = CFrame.new(basePos)
  65.  
  66. -- Bounce
  67. task.spawn(function()
  68. for i = 1, 3 do
  69. hrp.CFrame = hrp.CFrame + Vector3.new(0, 2, 0)
  70. task.wait(0.2)
  71. hrp.CFrame = hrp.CFrame - Vector3.new(0, 2, 0)
  72. task.wait(0.2)
  73. end
  74. end)
  75.  
  76. task.wait(2)
  77. hrp.CFrame = CFrame.new(originalPos)
  78. end
  79. })
  80.  
  81. -- Auto Collect (placeholder)
  82. MainTab:CreateToggle({
  83. Name = "💰 Auto Collect Money (Coming Soon)",
  84. CurrentValue = false,
  85. Callback = function()
  86. Rayfield:Notify({
  87. Title = "Coming Soon!",
  88. Content = "Auto Collect will be added soon...",
  89. Duration = 5
  90. })
  91. end
  92. })
  93.  
  94. -- Insta Steal Fish
  95. MainTab:CreateButton({
  96. Name = "🐟 Instant Steal Fish",
  97. Callback = function()
  98. local player = game.Players.LocalPlayer
  99. local char = player.Character or player.CharacterAdded:Wait()
  100. local hrp = char:WaitForChild("HumanoidRootPart")
  101. local originalPos = hrp.Position
  102.  
  103. Rayfield:Notify({
  104. Title = "Stealing...",
  105. Content = "Preparing to steal all fish!",
  106. Duration = 3
  107. })
  108.  
  109. local barTime = math.random(6, 8)
  110. for progress = 1, barTime do
  111. Rayfield:Notify({
  112. Title = "Insta Steal Fish",
  113. Content = "Loading... (" .. progress .. "/" .. barTime .. "s)",
  114. Duration = 1
  115. })
  116. task.wait(1)
  117. end
  118.  
  119. for _, part in ipairs(workspace:GetDescendants()) do
  120. if part:IsA("BasePart") and part.Name:lower():find("collect") then
  121. hrp.CFrame = part.CFrame + Vector3.new(0, 3, 0)
  122. task.wait(0.15)
  123. end
  124. end
  125.  
  126. task.wait(0.5)
  127. hrp.CFrame = CFrame.new(originalPos)
  128.  
  129. Rayfield:Notify({
  130. Title = "Success!",
  131. Content = "Insta steal completed.",
  132. Duration = 5
  133. })
  134. end
  135. })
  136.  
  137. -- Remove All Wall and Glass Parts
  138. MainTab:CreateButton({
  139. Name = "🧱 Remove All 'Wall' and 'Glass'",
  140. Callback = function()
  141. for _, v in pairs(game:GetDescendants()) do
  142. if v:IsA("BasePart") and (v.Name == "Wall" or v.Name == "Glass") then
  143. v:Destroy()
  144. end
  145. end
  146. Rayfield:Notify({
  147. Title = "Removed",
  148. Content = "All Walls and Glass parts removed!",
  149. Duration = 4
  150. })
  151. end
  152. })
  153.  
  154. -- Instant Proximity Prompt Activation
  155. MainTab:CreateButton({
  156. Name = "⚡ Instant Interact (Proximity)",
  157. Callback = function()
  158. for _, prompt in pairs(game:GetDescendants()) do
  159. if prompt:IsA("ProximityPrompt") then
  160. fireproximityprompt(prompt)
  161. end
  162. end
  163. Rayfield:Notify({
  164. Title = "Activated",
  165. Content = "All available prompts interacted!",
  166. Duration = 4
  167. })
  168. end
  169. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement