Advertisement
UNKNOWNSCRIPTER12

LAUNDRY SIMULATOR SCRIPT BEST GUI MADE

Mar 15th, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. --
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local Autofarmbutton = Instance.new("TextButton")
  5. local textdont = Instance.new("TextLabel")
  6.  
  7. --
  8.  
  9. ScreenGui.Parent = game.CoreGui
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. main.Name = "main"
  13. main.Parent = ScreenGui
  14. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  15. main.Position = UDim2.new(0.193766937, 0, 0.268924296, 0)
  16. main.Size = UDim2.new(0, 407, 0, 232)
  17. main.Active = true
  18. main.Draggable = true
  19.  
  20. Autofarmbutton.Name = "Autofarm button"
  21. Autofarmbutton.Parent = main
  22. Autofarmbutton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  23. Autofarmbutton.BorderColor3 = Color3.fromRGB(255, 255, 255)
  24. Autofarmbutton.Position = UDim2.new(0.265356272, 0, 0.389985502, 0)
  25. Autofarmbutton.Size = UDim2.new(0, 191, 0, 50)
  26. Autofarmbutton.Font = Enum.Font.Oswald
  27. Autofarmbutton.Text = "AUTOFARM"
  28. Autofarmbutton.TextColor3 = Color3.fromRGB(255, 255, 255)
  29. Autofarmbutton.TextSize = 18.000
  30. Autofarmbutton.MouseButton1Down:connect(function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/TTJfkprd", true))()
  32. end)
  33.  
  34. textdont.Name = "textdont"
  35. textdont.Parent = main
  36. textdont.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  37. textdont.BorderSizePixel = 0
  38. textdont.Size = UDim2.new(0, 407, 0, 43)
  39. textdont.Font = Enum.Font.Oswald
  40. textdont.Text = "Laundry Simulator (Beta) AUTOFARM"
  41. textdont.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. textdont.TextSize = 18.000
  43.  
  44. --
  45.  
  46. local function GRKPWZ_fake_script() -- textdont.LOCALDONTSCRIPT
  47. local script = Instance.new('LocalScript', textdont)
  48.  
  49. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  50.  
  51. counter = 0
  52.  
  53. while wait(0.1)do
  54. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  55.  
  56. counter = counter + 0.01
  57. end
  58. end
  59. coroutine.wrap(GRKPWZ_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement