Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PaintGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local ClearBoard = Instance.new("TextButton")
- local ShowWordGui = Instance.new("TextButton")
- --Properties:
- PaintGui.Name = "PaintGui"
- PaintGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- PaintGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = PaintGui
- Frame.BackgroundColor3 = Color3.new(0, 0.54902, 1)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.0155058336, 0, 0.544740975, 0)
- Frame.Size = UDim2.new(0, 220, 0, 265)
- ClearBoard.Name = "ClearBoard"
- ClearBoard.Parent = Frame
- ClearBoard.BackgroundColor3 = Color3.new(0, 0.745098, 1.01961)
- ClearBoard.BorderSizePixel = 0
- ClearBoard.Position = UDim2.new(0, 0, 0.109433964, 0)
- ClearBoard.Size = UDim2.new(0, 220, 0, 95)
- ClearBoard.Font = Enum.Font.GothamBold
- ClearBoard.TextColor3 = Color3.new(1, 1, 1)
- ClearBoard.TextScaled = true
- ClearBoard.TextSize = 14
- ClearBoard.TextStrokeTransparency = 0
- ClearBoard.TextWrapped = true
- ShowWordGui.Name = "ShowWordGui"
- ShowWordGui.Parent = Frame
- ShowWordGui.BackgroundColor3 = Color3.new(0, 0.745098, 1.01961)
- ShowWordGui.BorderSizePixel = 0
- ShowWordGui.Position = UDim2.new(0, 0, 0.592452824, 0)
- ShowWordGui.Size = UDim2.new(0, 220, 0, 80)
- ShowWordGui.Font = Enum.Font.GothamBold
- ShowWordGui.Text = "Show Word Gui"
- ShowWordGui.TextColor3 = Color3.new(1, 1, 1)
- ShowWordGui.TextScaled = true
- ShowWordGui.TextSize = 14
- ShowWordGui.TextStrokeTransparency = 0
- ShowWordGui.TextWrapped = true
- -- Scripts:
- function SCRIPT_EQHY86_FAKESCRIPT() -- ClearBoard.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = ClearBoard
- script.Parent.MouseButton1Click:Connect(function(click)
- game.ReplicatedStorage.Remotes.ClearDrawingBoardArevoirStyle:FireServer()
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_EQHY86_FAKESCRIPT))
- function SCRIPT_BIMR66_FAKESCRIPT() -- ShowWordGui.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = ShowWordGui
- script.Parent.MouseButton1Click:Connect(function(click)
- while wait() do
- game.Players.LocalPlayer.PlayerGui.MainGameUI.ModerationEnforcement.Visible = true
- end
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_BIMR66_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement