Elerium Super Fish Evolution Mobile Script
Script
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/memejames/elerium-v2-ui-library//main/Library", true))() local window = library:AddWindow("Name GUI", { main_color = Color3.fromRGB(41, 74, 122), -- Color min_size = Vector2.new(200, 200), -- Size of the gui can_resize = false, -- true or false }) local features = window:AddTab("Features") -- Name of tab features:Show() -- shows the tab local AutoAttack = false features:AddSwitch("Fast Attack", function(state) AutoAttack = state while AutoAttack do game:GetService("ReplicatedStorage").Remote.Event.Combat.M1:FireServer() wait(0.1) end end) local FastExp = false features:AddSwitch("Fast Exp x35", function(state) FastExp = state while FastExp do local args = { [1] = "2" } game:GetService("ReplicatedStorage").Remote.Event.TheEvent:FindFirstChild("[C-S]GetOnline5MinReward"):FireServer(unpack(args)) wait(0) end end) local FreePet = false features:AddSwitch("Free Pet", function(state) FreePet = state while FreePet do local args = { [1] = "12" } game:GetService("ReplicatedStorage").Remote.Event.TheEvent:FindFirstChild("[C-S]GetOnline5MinReward"):FireServer(unpack(args)) wait(0) end end) local FastExp1 = false features:AddSwitch("Fast Exp 1K", function(state) FastExp1 = state while FastExp1 do local args = { [1] = "5" } game:GetService("ReplicatedStorage").Remote.Event.TheEvent:FindFirstChild("[C-S]GetOnline5MinReward"):FireServer(unpack(args)) wait(0) end end) local FreePet2 = false features:AddSwitch("Free Pet Time", function(state) FreePet2 = state while FreePet2 do local args = { [1] = 2 } game:GetService("ReplicatedStorage").Remote.Event.TheEvent.TryGetFreePet:FireServer(unpack(args)) wait(0.01) end end)