Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local ExecuteButton = Instance.new("TextButton")
- local CloseButton = Instance.new("TextButton")
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- Frame.Position = UDim2.new(0.5, -100, 0.5, -50)
- Frame.Size = UDim2.new(0, 200, 0, 100)
- Frame.Active = true
- Frame.Draggable = true
- ExecuteButton.Parent = Frame
- ExecuteButton.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
- ExecuteButton.Position = UDim2.new(0.5, -75, 0.5, -20)
- ExecuteButton.Size = UDim2.new(0, 150, 0, 40)
- ExecuteButton.Font = Enum.Font.SourceSans
- ExecuteButton.Text = "strongest punch simulator"
- ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- ExecuteButton.TextSize = 12.000
- ExecuteButton.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/STRONGEST-PUNCH-SIMULATOR-Op-script-for-sim-DO-not-try-in-main-acc-9461"))()
- end)
- CloseButton.Parent = Frame
- CloseButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50)
- CloseButton.Position = UDim2.new(1, -20, 0, 0)
- CloseButton.Size = UDim2.new(0, 20, 0, 20)
- CloseButton.Font = Enum.Font.SourceSans
- CloseButton.Text = "X"
- CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- CloseButton.TextSize = 14.000
- CloseButton.MouseButton1Click:Connect(function()
- ScreenGui:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement