Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local SolarisLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Stebulous/solaris-ui-lib/main/source.lua"))()
- --[[SolarisLib:New({
- Name - Title of the UI <string>
- FolderToSave - Name of the folder where the UI files will be stored <string>
- })]]
- local win = SolarisLib:New({
- Name = "Lifting Power Simulator",
- FolderToSave = "SolarisLibStuff"
- })
- --win:Tab(title <string>)
- local tab = win:Tab("Semi-AutoFarm")
- --tab:Section(title <string>)
- local sec = tab:Section("Auto Farm")
- --sec:Button(title <string>, callback <function>)
- sec:Button("AutoLift!Only Click 1 Time Per Tool!", function()
- _G.lift = true
- local Item = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name
- while _G.lift == true do
- local args = {
- [1] = "Lift",
- [2] = game:GetService("Players").LocalPlayer.Character:FindFirstChild(Item)
- }
- game:GetService("Players").LocalPlayer.Character:FindFirstChild(Item).Handler.Script.RemoteEvent:FireServer(unpack(args))
- wait(.4)
- end
- end)
- --sec:Toggle(title <string>,default <boolean>, flag <string>, callback <function>)
- local toggle = sec:Toggle("Auto Stage", false,"Toggle", function(t)
- _G.stage = t
- while _G.stage == true do
- -- Script generated by SimpleSpy - credits to exx#9394
- local args = {
- [1] = "StageUp"
- }
- game:GetService("ReplicatedStorage").Remotes.RemoteFunction:InvokeServer(unpack(args))
- wait(1)
- end
- end)
- https://discord.gg/wX3mxuaB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement