Phillymademar

Loop Fling All Script

Jul 29th, 2024
7,426
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. local executed = false
  2.  
  3. local function closeScript()
  4. executed = true
  5. StopButton.Visible = false
  6. end
  7.  
  8. local Gui = Instance.new("ScreenGui")
  9. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  10.  
  11. local StopButton = Instance.new("TextButton")
  12. StopButton.Parent = Gui
  13. StopButton.Position = UDim2.new(0.5, -50, 0.6, 0)
  14. StopButton.Size = UDim2.new(0, 100, 0, 50)
  15. StopButton.Text = "Stop Script"
  16. StopButton.TextSize = 24 -- Increase text size to 24
  17. StopButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black Background
  18. StopButton.TextColor3 = Color3.fromRGB(255, 255, 255) -- White Text
  19. StopButton.Font = Enum.Font.Gotham -- Set font to Gotham
  20. StopButton.MouseButton1Click:Connect(closeScript)
  21.  
  22. local StarterGui = game:GetService("StarterGui")
  23. StarterGui:SetCore("SendNotification", {
  24. Title = "SUBSCRIBE TO PHILLYMADEMARE",
  25. Text = "Credits To AnthonyIsHere"
  26. })
  27.  
  28. while true and not executed do
  29. wait(2)
  30. loadstring(game:HttpGet("https://pastebin.com/raw/zqyDSUWX"))()
  31. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment