Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local parts = {}
- function scan(p)
- for _,target in pairs(p:GetChildren()) do
- if target:IsA("BasePart") then
- local bb = Instance.new("BillboardGui", target)
- bb.Size = UDim2.new(50,0 , 25,0)
- bb.AlwaysOnTop = true
- local randomtext = {
- "black niggers",
- "kfc watermelon",
- "niggers"
- }
- local label = Instance.new("TextLabel", bb)
- label.Size = UDim2.new(1,0 , 1,0)
- label.TextScaled = true
- label.TextWrapped = true
- label.BackgroundTransparency = 1
- local brickcolor = BrickColor.new("Really red")
- label.TextColor3 = brickcolor.Color
- label.Font = "ArialBold"
- label.TextSize = 100
- local chosentext = randomtext[math.random(1, #randomtext)]
- label.Text = chosentext
- end
- scan(target)
- end
- end
- scan(game.Workspace)
- --print(#parts .. (#parts == 1 and " brick " or " bricks ") .. "counted")
- parts = {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement