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
- table.insert(parts,target) -- target is the actual parts!
- target.Anchored = false
- target.BrickColor = BrickColor.new("Really black")
- local sb = Instance.new("SelectionBox", target)
- sb.Color3 = Color3.new(255, 0, 0)
- sb.SurfaceColor3 = Color3.new(170, 0, 0)
- sb.Adornee = target
- local pe = Instance.new("ParticleEmitter", target)
- pe.Name = "10101110010011"
- pe.Texture = "rbxassetid://45524735"
- pe.Rate = 10
- pe.SpreadAngle = Vector2.new(-90, 90)
- local pe2 = Instance.new("ParticleEmitter", target)
- pe2.Name = "ERROR_._ER-__ORO_...."
- pe2.Texture = "rbxassetid://158293315"
- pe2.Rate = 10
- pe2.SpreadAngle = Vector2.new(-90, 90)
- local bb = Instance.new("BillboardGui", target)
- bb.Size = UDim2.new(50,0 , 25,0)
- bb.AlwaysOnTop = true
- local randomtext = {
- "RENDERMAN",
- "I see you",
- "_-ERROR-_"
- }
- 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
- local fire = Instance.new("Fire", target)
- fire.Size = 30
- fire.Heat = 25
- end
- scan(target)
- end
- end
- while true do
- wait()
- game.StarterGui:SetCore("ChatMakeSystemMessage", {
- Text = "ReNdErmAn Hasd CoMe To rObLoX"; -- Required. Has to be a string!
- Color = Color3.new(0, 1, 1); -- Cyan is (0, 255 / 255, 255 / 255). Optional, defaults to white: Color3.new(255 / 255, 255 / 255, 243 / 255)
- Font = Enum.Font.SourceSans; -- Optional, defaults to Enum.Font.SourceSansBold
- FontSize = Enum.FontSize.Size24; -- Optional, defaults to Enum.FontSize.Size18
- })
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement