Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local TextLabel = Instance.new("TextLabel")
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- TextLabel.Parent = ScreenGui
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.FontSize = Enum.FontSize.Size14
- TextLabel.TextSize = 14
- TextLabel.BackgroundTransparency = 1
- if game:GetService('Workspace').FilteringEnabled == true then
- TextLabel.Text = "FE IS ENABLED LOL REKT XDDDDDDDD"
- else
- TextLabel.Text = "FE is Disabled, lucky"
- end
- wait(3)
- ScreenGui:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement