Advertisement
FridayLooser

Power Wash Simulator inf water script

Jul 21st, 2021
6,511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. local amount = 0
  2.  
  3. repeat
  4. game:GetService("ReplicatedStorage").Remotes.RefillRemote:FireServer(true)
  5. amount = amount + 1
  6. until amount == 50
  7.  
  8. -- Gui to Lua
  9. -- Version: 3.2
  10.  
  11. -- Instances:
  12.  
  13. local ScreenGui = Instance.new("ScreenGui")
  14. local Frame = Instance.new("Frame")
  15. local UICorner = Instance.new("UICorner")
  16. local TextLabel = Instance.new("TextLabel")
  17. local UICorner_2 = Instance.new("UICorner")
  18. local TextButton = Instance.new("TextButton")
  19. local UICorner_3 = Instance.new("UICorner")
  20.  
  21. --Properties:
  22.  
  23. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. Frame.Parent = ScreenGui
  27. Frame.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  28. Frame.BackgroundTransparency = 0.100
  29. Frame.BorderColor3 = Color3.fromRGB(102, 102, 102)
  30. Frame.Position = UDim2.new(0.359221786, 0, 0.303745508, 0)
  31. Frame.Size = UDim2.new(0, 363, 0, 202)
  32.  
  33. UICorner.Parent = Frame
  34.  
  35. TextLabel.Parent = Frame
  36. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. TextLabel.Position = UDim2.new(0.223292843, 0, 0.0997543335, 0)
  38. TextLabel.Size = UDim2.new(0, 200, 0, 40)
  39. TextLabel.Font = Enum.Font.SourceSans
  40. TextLabel.Text = "Thanks for using my script!"
  41. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. TextLabel.TextSize = 20.000
  43.  
  44. UICorner_2.Parent = TextLabel
  45.  
  46. TextButton.Parent = Frame
  47. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. TextButton.Position = UDim2.new(0.254700333, 0, 0.695563138, 0)
  49. TextButton.Size = UDim2.new(0, 177, 0, 39)
  50. TextButton.Font = Enum.Font.SourceSans
  51. TextButton.Text = "Close"
  52. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. TextButton.TextSize = 14.000
  54.  
  55. UICorner_3.Parent = TextButton
  56.  
  57. -- Scripts:
  58.  
  59. local function OVJH_fake_script() -- TextButton.LocalScript
  60. local script = Instance.new('LocalScript', TextButton)
  61.  
  62. script.Parent.MouseButton1Click:Connect(function()
  63. script.Parent.Parent:Destroy()
  64. end)
  65. end
  66. coroutine.wrap(OVJH_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement