The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
My Salon GUI script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("My Salon")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. local can = true
  8. local playerposition = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Position + Vector3.new(0,0,0)
  9. --Toggle
  10. b:Toggle("AutoWork",function(bool)
  11.     shared.toggle = bool
  12.     AutoWork = bool
  13. end)
  14.  
  15. b:Toggle("AutoClean",function(bool)
  16.     shared.toggle = bool
  17.     AutoClean = bool
  18. end)
  19.  
  20. f:Toggle("Floor",function(bool)
  21.     shared.toggle = bool
  22.     Floor = bool
  23. end)
  24.  
  25. e:Toggle("AntiAfk",function(bool)
  26.     shared.toggle = bool
  27.     AntiAfk = bool
  28. end)
  29. --Credits
  30. u:Button("maxgat5#8395",function()
  31.     setclipboard("maxgat5#8395")
  32. end)
  33.  
  34. u:Button("Discrod Server",function()
  35.     setclipboard("https://discord.gg/K4txdRSVfq")
  36. end)
  37.  
  38. while wait() do
  39.     if Floor == true then
  40.         game:GetService("ReplicatedStorage").Events.BuyFloor:FireServer()
  41.         for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Main.Pages:GetChildren()) do
  42.             if v.Name == "Responded" or v.Name == "PROMPT" then
  43.                 v:Destroy()
  44.             end
  45.         end
  46.     end
  47.    
  48.     if AutoWork == true then
  49.         game:GetService("ReplicatedStorage").Events.ToggleSalon:FireServer(true)
  50.         game:GetService("ReplicatedStorage").Events.GreetNPCs:FireServer()
  51.         for i,v in pairs(game:GetService("Workspace").NPCs:GetChildren()) do
  52.             if AutoWork == true then
  53.                 local args = {v}
  54.                 game:GetService("ReplicatedStorage").Events.AttendNPC:FireServer(unpack(args))
  55.             end
  56.         end
  57.     end
  58.    
  59.     if AutoClean == true then
  60.         if can == true then
  61.             can = false
  62.         end
  63.         for i,v in pairs(game:GetService("Workspace").Tycoons:GetChildren()) do
  64.             for i,v1 in pairs(v:GetChildren()) do
  65.                 if v1.Name == "Owner" and v1.ClassName == "ObjectValue" then
  66.                     for i,v2 in pairs(v1.Parent.Trash:GetChildren()) do
  67.                         for i,v3 in pairs(v2:GetChildren()) do
  68.                             if v3.ClassName == "MeshPart" then
  69.                                 if AutoClean == true then
  70.                                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v3.CFrame.Position + Vector3.new(0,0,0))
  71.                                     wait()
  72.                                     keypress(0x45)
  73.                                     keyrelease(0x45)
  74.                                     wait()
  75.                                 end
  76.                             end
  77.                         end
  78.                     end
  79.                 end
  80.             end
  81.         end
  82.     else
  83.         if can == false then
  84.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(playerposition)
  85.             can = true
  86.         end
  87.     end
  88.     if AntiAfk == true then
  89.         local bb=game:service'VirtualUser'
  90.         bb:CaptureController()
  91.         bb:ClickButton2(Vector2.new())
  92.     end
  93. end