Advertisement
Girtas_Senis

Lifting Power Simulator

Jul 19th, 2022
921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. local SolarisLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Stebulous/solaris-ui-lib/main/source.lua"))()
  2.  
  3. --[[SolarisLib:New({
  4. Name - Title of the UI <string>
  5. FolderToSave - Name of the folder where the UI files will be stored <string>
  6. })]]
  7. local win = SolarisLib:New({
  8. Name = "Lifting Power Simulator",
  9. FolderToSave = "SolarisLibStuff"
  10. })
  11.  
  12. --win:Tab(title <string>)
  13. local tab = win:Tab("Semi-AutoFarm")
  14.  
  15. --tab:Section(title <string>)
  16. local sec = tab:Section("Auto Farm")
  17.  
  18. --sec:Button(title <string>, callback <function>)
  19. sec:Button("AutoLift!Only Click 1 Time Per Tool!", function()
  20. _G.lift = true
  21.  
  22. local Item = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name
  23.  
  24. while _G.lift == true do
  25. local args = {
  26. [1] = "Lift",
  27. [2] = game:GetService("Players").LocalPlayer.Character:FindFirstChild(Item)
  28. }
  29.  
  30. game:GetService("Players").LocalPlayer.Character:FindFirstChild(Item).Handler.Script.RemoteEvent:FireServer(unpack(args))
  31. wait(.4)
  32. end
  33. end)
  34.  
  35. --sec:Toggle(title <string>,default <boolean>, flag <string>, callback <function>)
  36. local toggle = sec:Toggle("Auto Stage", false,"Toggle", function(t)
  37. _G.stage = t
  38. while _G.stage == true do
  39. -- Script generated by SimpleSpy - credits to exx#9394
  40.  
  41. local args = {
  42. [1] = "StageUp"
  43. }
  44.  
  45. game:GetService("ReplicatedStorage").Remotes.RemoteFunction:InvokeServer(unpack(args))
  46. wait(1)
  47. end
  48. end)
  49.  
  50.  
  51. https://discord.gg/wX3mxuaB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement