Advertisement
Senar

Fisch Script

Apr 16th, 2025 (edited)
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.49 KB | Gaming | 0 0
  1. -- https://www.youtube.com/watch?v=hLg8J84-bYs (watch this video on how-to's)
  2. -- What it do 🤓☝️ on rod equipped, insta cast, insta catch, auto shake
  3. -- enabled by default
  4. -- to turn off reassign _G.running to false, to reenable reassign it to true
  5. --_G.running = false
  6.  
  7. if _G.running == false then
  8.     return;
  9. else
  10.     _G.running = true;
  11.    
  12.     local plr = game.Players.LocalPlayer;
  13.     local plrgui = plr.PlayerGui;
  14.     local RS = game:GetService("ReplicatedStorage");
  15.  
  16.         repeat task.wait()
  17.                 task.spawn(function()
  18.                     local succ, err = pcall(function()
  19.                         local tool = plr.Character:FindFirstChildWhichIsA("Tool")
  20.                         plr.Character:FindFirstChildWhichIsA("Tool").events.cast:FireServer(100, 1)
  21.                     end)
  22.                 end)
  23.                
  24.                 task.spawn(function()
  25.                     local succ, err = pcall(function()
  26.                         local shakeui = plrgui.shakeui;
  27.                         if shakeui then
  28.                             shakeui.safezone.button.shake:FireServer();
  29.                         end
  30.                     end)
  31.                 end);
  32.                
  33.                 if plrgui:FindFirstChild("reel") ~= nil then
  34.                     RS.events["reelfinished"..' ']:FireServer(100, true);
  35.                     plr.Character:FindFirstChildWhichIsA("Tool").events.reset:FireServer()
  36.                 end
  37.         until _G.running == false
  38. end
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement