Advertisement
alphabox

Untitled

Dec 7th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. --[Script Kiddie]--
  2. --Created by alpha / bop#0002, whitelisted for the kiddies
  3.  
  4. --[Varibles]--
  5. local character = owner.Character
  6.  
  7. --[Tag]--
  8. local Tag = Instance.new("BillboardGui")
  9. Tag.LightInfluence = 0
  10. Tag.Name = "Tag"
  11. Tag.Size = UDim2.new(10, 0, 2, 0)
  12. Tag.StudsOffset = Vector3.new(0, 2, 0)
  13. Tag.Parent = character:WaitForChild("Head")
  14. local Text = Instance.new("TextLabel")
  15. Text.BackgroundTransparency = 1
  16. Text.Name = "Text"
  17. Text.Size = UDim2.new(1, 0, 1, 0)
  18. Text.Font = Enum.Font.Cartoon
  19. Text.Text = ""
  20. Text.TextColor3 = Color3.fromRGB(255, 255, 255)
  21. Text.TextScaled = true
  22. Text.TextStrokeColor3 = Color3.fromRGB(0, 136, 255)
  23. Text.TextStrokeTransparency = 0
  24. Text.Parent = Tag
  25.  
  26. --[Open speech]--
  27. wait(3)
  28. local Line = "scripted by alphabox"
  29. for i = 1, #Line do
  30. Text.Text = string.sub(Line, 1, i)
  31. wait()
  32. end
  33. wait(1)
  34. for i = #Line, 0, -1 do
  35. Text.Text = string.sub(Line, 1, i)
  36. wait()
  37. end
  38. wait(1)
  39. local Line = "script kiddie"
  40. for i = 1, #Line do
  41. Text.Text = string.sub(Line, 1, i)
  42. wait()
  43. end
  44.  
  45. --[Character]--
  46. character.Shirt.ShirtTemplate = "rbxassetid://553865259"
  47. character.Pants.PantsTemplate = "rbxassetid://454930932"
  48.  
  49. local Accessorys = character:GetChildren()
  50. for i = 1, #Accessorys do
  51. local Accessory = Accessorys[i]
  52. if Accessory:IsA("Accessory") then
  53. Accessory:Destroy()
  54. end
  55. if Accessory:IsA("ShirtGraphic") then
  56. Accessory:Destroy()
  57. end
  58. end
  59.  
  60. local Cap = Instance.new("Accessory")
  61. Cap.Parent = character
  62. Cap.Name = "Cap"
  63. local CapPart = Instance.new("Part")
  64. CapPart.Parent = Cap
  65. CapPart.Name = "Handle"
  66. local Attatchment = Instance.new("Attachment")
  67. Attatchment.Name = "HatAttachment"
  68. Attatchment.Parent = CapPart
  69. Attatchment.Position = Vector3.new(0, 0.4, 0)
  70. local Mesh = Instance.new("SpecialMesh")
  71. Mesh.Parent = CapPart
  72. Mesh.MeshId = "http://www.roblox.com/asset/?id=1028604"
  73. Mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
  74. Mesh.TextureId = "http://www.roblox.com/asset/?id=1028605"
  75. Mesh.VertexColor = Vector3.new(1, 1, 1)
  76. local Cap = game:GetService("InsertService"):LoadAsset(185687363)
  77. Cap.Parent = character
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement