opensource
no key
free
auto farm money
equip best
No comments yet. Be the first to comment!
1local ReplicatedStorage = game:GetService("ReplicatedStorage")
2local RemoteHandler = ReplicatedStorage:WaitForChild("RemoteHandler")
3local FishingEvent = RemoteHandler:WaitForChild("Fishing")
4local SellEvent = RemoteHandler:WaitForChild("SellMultiple")
5local PlotEvent = RemoteHandler:WaitForChild("Plot")
6
7local sellData = {
8 Divine = true,
9 Epic = true,
10 Godly = true,
11 Legendary = true,
12 Mythic = true,
13 Rare = true,
14 Secret = true,
15 Uncommon = true
16}
17
18task.spawn(function()
19 while true do
20 FishingEvent:FireServer("Caught", 9999999)
21 task.wait(0.1)
22 end
23end)
24
25while true do
26 PlotEvent:FireServer("EquipBest", "String", "String")
27 task.wait(3)
28 SellEvent:FireServer(sellData)
29 task.wait(13)
30end