21.3k Views
Free
Description
you need to use script in loadstring to see wich base you have and change it in mainscript in tycoons then change in CellName where you want to sell ores script increase upgraders beams and make id invisible for player and ater 5 sec it automaticly teleport ores to sell point for best experience you need auto rebirth script for example: loadstring(game:HttpGet("https://raw.githubusercontent.com/BlueaqeR/scripts-lol/main/MinersHavenT", true))()
Comments
4

Offline
On_Man 1 year ago - Edited
W script
Offline
demokritoss 1 year ago - Edited
auto find base seems broken
Offline
aaa3 1 year ago - Edited
it ouptut your base in console
Offline
aaa3 1 year ago - Edited
-- base finder
local plrTycoon = game:GetService("Players").LocalPlayer.ActiveTycoon.Value
local tycoons = game:GetService("Workspace").Tycoons
function teleportBase()
for _, tycoonModel in ipairs(tycoons:GetChildren()) do
if tycoonModel == plrTycoon then
return tycoons:FindFirstChild(tycoonModel.Name)
end
end
end
local foundTycoon = teleportBase()
if foundTycoon then
print(":", foundTycoon:GetFullName())
else
print("nope")
end