Advertisement
Thecodeeasar

Strongest punch simulator

Nov 20th, 2024 (edited)
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local ExecuteButton = Instance.new("TextButton")
  4. local CloseButton = Instance.new("TextButton")
  5.  
  6. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7.  
  8. Frame.Parent = ScreenGui
  9. Frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  10. Frame.Position = UDim2.new(0.5, -100, 0.5, -50)
  11. Frame.Size = UDim2.new(0, 200, 0, 100)
  12. Frame.Active = true
  13. Frame.Draggable = true
  14.  
  15. ExecuteButton.Parent = Frame
  16. ExecuteButton.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  17. ExecuteButton.Position = UDim2.new(0.5, -75, 0.5, -20)
  18. ExecuteButton.Size = UDim2.new(0, 150, 0, 40)
  19. ExecuteButton.Font = Enum.Font.SourceSans
  20. ExecuteButton.Text = "strongest punch simulator"
  21. ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  22. ExecuteButton.TextSize = 12.000
  23. ExecuteButton.MouseButton1Click:Connect(function()
  24. loadstring(game:HttpGet("https://rawscripts.net/raw/STRONGEST-PUNCH-SIMULATOR-Op-script-for-sim-DO-not-try-in-main-acc-9461"))()
  25. end)
  26.  
  27. CloseButton.Parent = Frame
  28. CloseButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50)
  29. CloseButton.Position = UDim2.new(1, -20, 0, 0)
  30. CloseButton.Size = UDim2.new(0, 20, 0, 20)
  31. CloseButton.Font = Enum.Font.SourceSans
  32. CloseButton.Text = "X"
  33. CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. CloseButton.TextSize = 14.000
  35. CloseButton.MouseButton1Click:Connect(function()
  36. ScreenGui:Destroy()
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement