Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Loop = Instance.new("TextButton")
- local Unloop = Instance.new("TextButton")
- local Clear = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.Position = UDim2.new(0.680593014, 0, 0.0571428575, 0)
- Frame.Size = UDim2.new(0, 215, 0, 157)
- Frame.Active = true
- Frame.Draggable = true
- Loop.Name = "Loop"
- Loop.Parent = Frame
- Loop.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
- Loop.Position = UDim2.new(0.0325581469, 0, 0.12101911, 0)
- Loop.Size = UDim2.new(0, 88, 0, 53)
- Loop.Font = Enum.Font.SourceSans
- Loop.Text = "Loop clear board"
- Loop.TextColor3 = Color3.new(0, 0, 0)
- Loop.TextSize = 14
- Loop.MouseButton1Click:connect(function()
- _G.Loop = true
- while _G.Loop == true do
- wait(0.1)
- local A_1 = game:GetService("Workspace").PublicDrawingBoard
- local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.DrawBoardServer.ClearDrawingBoard
- Event:InvokeServer(A_1)
- end
- end)
- Unloop.Name = "Unloop"
- Unloop.Parent = Frame
- Unloop.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
- Unloop.Position = UDim2.new(0.562790692, 0, 0.12101911, 0)
- Unloop.Size = UDim2.new(0, 88, 0, 53)
- Unloop.Font = Enum.Font.SourceSans
- Unloop.Text = "Stop loop"
- Unloop.TextColor3 = Color3.new(0, 0, 0)
- Unloop.TextSize = 14
- Unloop.MouseButton1Click:connect(function()
- _G.Loop = false
- while _G.Loop == true do
- wait(0.1)
- local A_1 = game:GetService("Workspace").PublicDrawingBoard
- local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.DrawBoardServer.ClearDrawingBoard
- Event:InvokeServer(A_1)
- end
- end)
- Clear.Name = "Clear"
- Clear.Parent = Frame
- Clear.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
- Clear.Position = UDim2.new(0, 0, 0.51592356, 0)
- Clear.Size = UDim2.new(0, 215, 0, 50)
- Clear.Font = Enum.Font.SourceSans
- Clear.Text = "Clear Board"
- Clear.TextColor3 = Color3.new(0, 0, 0)
- Clear.TextSize = 14
- Clear.MouseButton1Click:connect(function()
- local A_1 = game:GetService("Workspace").PublicDrawingBoard
- local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.DrawBoardServer.ClearDrawingBoard
- Event:InvokeServer(A_1)
- end)
- -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement