Advertisement
killerbrenden

Profanity

Feb 17th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(Player)
  2. Player.CharacterAdded:connect(function(Character)
  3. warn("Making Object")
  4. wait(3)
  5. warn("Object Made")
  6. wait(0.5)
  7. warn("Importing Object")
  8. wait(0.25)
  9. warn("Object Imported")
  10. wait(0.1)
  11. local Profanity = Instance.new("Part")
  12. Profanity.Anchored = true
  13. Profanity.Transparency = 0
  14. Profanity.CanCollide = true
  15. Profanity.Name = "Profanity"
  16. Profanity.CFrame = Character.Torso.CFrame + Vector3.new(0,0,0)
  17. Profanity.RotVelocity = Vector3.new(10,0,0)
  18. Profanity.Size = Vector3.new(58.35, 34.73, 2)
  19. local Texter = Instance.new("SurfaceGui")
  20. Texter.Name = "Texter"
  21. Texter.Parent = Profanity
  22. Texter.Face = "Front"
  23. local Texter2 = Instance.new("SurfaceGui")
  24. Texter2.Name = "Texter2"
  25. Texter2.Parent = Profanity
  26. Texter2.Face = "Back"
  27. local Text = Instance.new("TextLabel")
  28. Text.BackgroundTransparency = 1
  29. Text.Font = Enum.Font.ArialBold
  30. Text.FontSize = Enum.FontSize.Size60
  31. Text.Parent = Texter
  32. Text.TextScaled = true
  33. Text.Text = "NIGGER"
  34. Text.Name = "Text"
  35. Text.Size = UDim2.new(1,0,1,0)
  36. Text.TextWrap = true
  37. Text.TextColor3 = Color3.new(0,0,0)
  38. Text.TextStrokeTransparency = 0
  39. Text.TextStrokeColor3 = Color3.new(255,255,255)
  40. local Text2 = Instance.new("TextLabel")
  41. Text2.BackgroundTransparency = 1
  42. Text2.Font = Enum.Font.ArialBold
  43. Text2.FontSize = Enum.FontSize.Size60
  44. Text2.Parent = Texter2
  45. Text2.TextScaled = true
  46. Text2.Text = "NIGGER"
  47. Text2.Name = "Text2"
  48. Text2.Size = UDim2.new(1,0,1,0)
  49. Text2.TextWrap = true
  50. Text2.TextColor3 = Color3.new(0,0,0)
  51. Text2.TextStrokeTransparency = 0
  52. Text2.TextStrokeColor3 = Color3.new(255,255,255)
  53. end)
  54. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement