Advertisement
Exploiter3030

Untitled

Feb 1st, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Loop = Instance.new("TextButton")
  7. local Unloop = Instance.new("TextButton")
  8. local Clear = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  15. Frame.Position = UDim2.new(0.680593014, 0, 0.0571428575, 0)
  16. Frame.Size = UDim2.new(0, 215, 0, 157)
  17. Frame.Active = true
  18. Frame.Draggable = true
  19.  
  20. Loop.Name = "Loop"
  21. Loop.Parent = Frame
  22. Loop.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  23. Loop.Position = UDim2.new(0.0325581469, 0, 0.12101911, 0)
  24. Loop.Size = UDim2.new(0, 88, 0, 53)
  25. Loop.Font = Enum.Font.SourceSans
  26. Loop.Text = "Loop clear board"
  27. Loop.TextColor3 = Color3.new(0, 0, 0)
  28. Loop.TextSize = 14
  29. Loop.MouseButton1Click:connect(function()
  30. _G.Loop = true
  31. while _G.Loop == true do
  32. wait(0.1)
  33. local A_1 = game:GetService("Workspace").PublicDrawingBoard
  34. local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.DrawBoardServer.ClearDrawingBoard
  35. Event:InvokeServer(A_1)
  36. end
  37. end)
  38.  
  39. Unloop.Name = "Unloop"
  40. Unloop.Parent = Frame
  41. Unloop.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  42. Unloop.Position = UDim2.new(0.562790692, 0, 0.12101911, 0)
  43. Unloop.Size = UDim2.new(0, 88, 0, 53)
  44. Unloop.Font = Enum.Font.SourceSans
  45. Unloop.Text = "Stop loop"
  46. Unloop.TextColor3 = Color3.new(0, 0, 0)
  47. Unloop.TextSize = 14
  48. Unloop.MouseButton1Click:connect(function()
  49. _G.Loop = false
  50. while _G.Loop == true do
  51. wait(0.1)
  52. local A_1 = game:GetService("Workspace").PublicDrawingBoard
  53. local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.DrawBoardServer.ClearDrawingBoard
  54. Event:InvokeServer(A_1)
  55. end
  56. end)
  57.  
  58. Clear.Name = "Clear"
  59. Clear.Parent = Frame
  60. Clear.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  61. Clear.Position = UDim2.new(0, 0, 0.51592356, 0)
  62. Clear.Size = UDim2.new(0, 215, 0, 50)
  63. Clear.Font = Enum.Font.SourceSans
  64. Clear.Text = "Clear Board"
  65. Clear.TextColor3 = Color3.new(0, 0, 0)
  66. Clear.TextSize = 14
  67. Clear.MouseButton1Click:connect(function()
  68. local A_1 = game:GetService("Workspace").PublicDrawingBoard
  69. local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.DrawBoardServer.ClearDrawingBoard
  70. Event:InvokeServer(A_1)
  71. end)
  72. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement