Advertisement
Guest User

Paint'n'Guess Gui

a guest
Feb 25th, 2019
7,480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. local PaintGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local ClearBoard = Instance.new("TextButton")
  4. local ShowWordGui = Instance.new("TextButton")
  5. --Properties:
  6. PaintGui.Name = "PaintGui"
  7. PaintGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8. PaintGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. Frame.Parent = PaintGui
  11. Frame.BackgroundColor3 = Color3.new(0, 0.54902, 1)
  12. Frame.BorderSizePixel = 0
  13. Frame.Position = UDim2.new(0.0155058336, 0, 0.544740975, 0)
  14. Frame.Size = UDim2.new(0, 220, 0, 265)
  15.  
  16. ClearBoard.Name = "ClearBoard"
  17. ClearBoard.Parent = Frame
  18. ClearBoard.BackgroundColor3 = Color3.new(0, 0.745098, 1.01961)
  19. ClearBoard.BorderSizePixel = 0
  20. ClearBoard.Position = UDim2.new(0, 0, 0.109433964, 0)
  21. ClearBoard.Size = UDim2.new(0, 220, 0, 95)
  22. ClearBoard.Font = Enum.Font.GothamBold
  23. ClearBoard.TextColor3 = Color3.new(1, 1, 1)
  24. ClearBoard.TextScaled = true
  25. ClearBoard.TextSize = 14
  26. ClearBoard.TextStrokeTransparency = 0
  27. ClearBoard.TextWrapped = true
  28.  
  29. ShowWordGui.Name = "ShowWordGui"
  30. ShowWordGui.Parent = Frame
  31. ShowWordGui.BackgroundColor3 = Color3.new(0, 0.745098, 1.01961)
  32. ShowWordGui.BorderSizePixel = 0
  33. ShowWordGui.Position = UDim2.new(0, 0, 0.592452824, 0)
  34. ShowWordGui.Size = UDim2.new(0, 220, 0, 80)
  35. ShowWordGui.Font = Enum.Font.GothamBold
  36. ShowWordGui.Text = "Show Word Gui"
  37. ShowWordGui.TextColor3 = Color3.new(1, 1, 1)
  38. ShowWordGui.TextScaled = true
  39. ShowWordGui.TextSize = 14
  40. ShowWordGui.TextStrokeTransparency = 0
  41. ShowWordGui.TextWrapped = true
  42. -- Scripts:
  43. function SCRIPT_EQHY86_FAKESCRIPT() -- ClearBoard.LocalScript
  44. local script = Instance.new('LocalScript')
  45. script.Parent = ClearBoard
  46. script.Parent.MouseButton1Click:Connect(function(click)
  47. game.ReplicatedStorage.Remotes.ClearDrawingBoardArevoirStyle:FireServer()
  48. end)
  49.  
  50. end
  51. coroutine.resume(coroutine.create(SCRIPT_EQHY86_FAKESCRIPT))
  52. function SCRIPT_BIMR66_FAKESCRIPT() -- ShowWordGui.LocalScript
  53. local script = Instance.new('LocalScript')
  54. script.Parent = ShowWordGui
  55. script.Parent.MouseButton1Click:Connect(function(click)
  56. while wait() do
  57. game.Players.LocalPlayer.PlayerGui.MainGameUI.ModerationEnforcement.Visible = true
  58. end
  59. end)
  60.  
  61. end
  62. coroutine.resume(coroutine.create(SCRIPT_BIMR66_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement