Advertisement
RGames

ROBLOX - Offending 101

Jul 13th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. warn('offending time')
  2. wait(3)
  3. local random = game.Players:GetChildren()
  4. local chosen = random[math.random(1,#random)]
  5. local character = chosen.Character
  6. local billGui = Instance.new("BillboardGui", character.Head)
  7. billGui.StudsOffsetWorldSpace = Vector3.new(0,2,0)
  8. billGui.LightInfluence = 0
  9. billGui.Size = UDim2.new(0,600,0,350)
  10. local text = Instance.new("TextLabel", billGui)
  11. text.BackgroundTransparency = 1
  12. text.Size = UDim2.new(1,0,1,0)
  13. text.Text = character.Name..' supports 9/11! They think Americans dont deserve a World Trade Center!'
  14. text.TextColor3 = Color3.fromRGB(255,255,255)
  15. text.TextSize = 25
  16. text.TextStrokeTransparency = 0
  17. if character:FindFirstChild('HumanoidRootPart') then
  18. local sound = Instance.new("Sound", character.HumanoidRootPart)
  19. sound.Volume = 10
  20. sound.EmitterSize = 50
  21. sound.SoundId = 'rbxassetid://691540143'
  22. sound.Looped = true
  23. sound:Play()
  24. end
  25. warn('I am so sorry to '..character.Name..'. I am so sorry. ;-;')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement