Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Load Rayfield Library
- local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
- -- Create Main Window
- local Window = Rayfield:CreateWindow({
- Name = "Reks - Steal A Fish",
- LoadingTitle = "Reks - Steal A Fish",
- LoadingSubtitle = "Made by ReksPlay",
- ConfigurationSaving = {
- Enabled = false
- },
- KeySystem = false
- })
- -- Info Tab
- local InfoTab = Window:CreateTab("Info", 4483362458)
- InfoTab:CreateParagraph({
- Title = "📌 Features",
- Content = [[
- 🔒 Lock Base: TP to base, bounce & return
- ⚡ Speed Boost: Boosts your walk speed
- 💰 Auto Collect Money (coming soon)
- 🐟 Instant Steal Fish (fully working!)
- 🧱 Remove Walls/Glass: Deletes parts to steal easily
- ⚡ Instant Interact: Triggers all proximity prompts
- Thanks for using Reks - Steal A Fish!
- Join our Discord to stay updated.
- ]]
- })
- -- Main Tab
- local MainTab = Window:CreateTab("Main", 4483362458)
- MainTab:CreateParagraph({
- Title = "Important Info",
- Content = "Use Speed Boost when stealing\nUse Lock Base if you're far\nInstant Steal Fish works now!\nAuto collect is still coming soon."
- })
- -- Speed Boost
- local defaultSpeed = 16
- MainTab:CreateToggle({
- Name = "⚡ Speed Boost (Use to steal fast)",
- CurrentValue = false,
- Callback = function(state)
- local char = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
- local hum = char:FindFirstChildOfClass("Humanoid")
- if hum then
- hum.WalkSpeed = state and 60 or defaultSpeed
- end
- end
- })
- -- Lock Base (TP to base, bounce, then return)
- MainTab:CreateButton({
- Name = "🔒 Lock Base",
- Callback = function()
- local player = game.Players.LocalPlayer
- local char = player.Character or player.CharacterAdded:Wait()
- local hrp = char:WaitForChild("HumanoidRootPart")
- local originalPos = hrp.Position
- local basePos = Vector3.new(-54.81, 6.00, 15.66)
- hrp.CFrame = CFrame.new(basePos)
- -- Bounce
- task.spawn(function()
- for i = 1, 3 do
- hrp.CFrame = hrp.CFrame + Vector3.new(0, 2, 0)
- task.wait(0.2)
- hrp.CFrame = hrp.CFrame - Vector3.new(0, 2, 0)
- task.wait(0.2)
- end
- end)
- task.wait(2)
- hrp.CFrame = CFrame.new(originalPos)
- end
- })
- -- Auto Collect (placeholder)
- MainTab:CreateToggle({
- Name = "💰 Auto Collect Money (Coming Soon)",
- CurrentValue = false,
- Callback = function()
- Rayfield:Notify({
- Title = "Coming Soon!",
- Content = "Auto Collect will be added soon...",
- Duration = 5
- })
- end
- })
- -- Insta Steal Fish
- MainTab:CreateButton({
- Name = "🐟 Instant Steal Fish",
- Callback = function()
- local player = game.Players.LocalPlayer
- local char = player.Character or player.CharacterAdded:Wait()
- local hrp = char:WaitForChild("HumanoidRootPart")
- local originalPos = hrp.Position
- Rayfield:Notify({
- Title = "Stealing...",
- Content = "Preparing to steal all fish!",
- Duration = 3
- })
- local barTime = math.random(6, 8)
- for progress = 1, barTime do
- Rayfield:Notify({
- Title = "Insta Steal Fish",
- Content = "Loading... (" .. progress .. "/" .. barTime .. "s)",
- Duration = 1
- })
- task.wait(1)
- end
- for _, part in ipairs(workspace:GetDescendants()) do
- if part:IsA("BasePart") and part.Name:lower():find("collect") then
- hrp.CFrame = part.CFrame + Vector3.new(0, 3, 0)
- task.wait(0.15)
- end
- end
- task.wait(0.5)
- hrp.CFrame = CFrame.new(originalPos)
- Rayfield:Notify({
- Title = "Success!",
- Content = "Insta steal completed.",
- Duration = 5
- })
- end
- })
- -- Remove All Wall and Glass Parts
- MainTab:CreateButton({
- Name = "🧱 Remove All 'Wall' and 'Glass'",
- Callback = function()
- for _, v in pairs(game:GetDescendants()) do
- if v:IsA("BasePart") and (v.Name == "Wall" or v.Name == "Glass") then
- v:Destroy()
- end
- end
- Rayfield:Notify({
- Title = "Removed",
- Content = "All Walls and Glass parts removed!",
- Duration = 4
- })
- end
- })
- -- Instant Proximity Prompt Activation
- MainTab:CreateButton({
- Name = "⚡ Instant Interact (Proximity)",
- Callback = function()
- for _, prompt in pairs(game:GetDescendants()) do
- if prompt:IsA("ProximityPrompt") then
- fireproximityprompt(prompt)
- end
- end
- Rayfield:Notify({
- Title = "Activated",
- Content = "All available prompts interacted!",
- Duration = 4
- })
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement