Advertisement
alphabox

Untitled

Dec 7th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. --[Script Kiddie]--
  2. --Created by alpha / bop#0002, whitelisted for the kiddies
  3.  
  4. --[Varibles]--
  5. local character = game.Workspace:WaitForChild("aIphabox")
  6. local TweenService = game:GetService("TweenService")
  7.  
  8. --[Tag]--
  9. local Tag = Instance.new("BillboardGui")
  10. Tag.LightInfluence = 0
  11. Tag.Name = "Tag"
  12. Tag.Size = UDim2.new(10, 0, 2, 0)
  13. Tag.StudsOffset = Vector3.new(0, 2, 0)
  14. Tag.Parent = character:WaitForChild("Head")
  15. local Text = Instance.new("TextLabel")
  16. Text.BackgroundTransparency = 1
  17. Text.Name = "Text"
  18. Text.Size = UDim2.new(1, 0, 1, 0)
  19. Text.Font = Enum.Font.Cartoon
  20. Text.Text = ""
  21. Text.TextColor3 = Color3.fromRGB(255, 226, 0)
  22. Text.TextScaled = true
  23. Text.TextStrokeColor3 = Color3.fromRGB(0, 136, 255)
  24. Text.TextStrokeTransparency = 0
  25. Text.Parent = Tag
  26.  
  27. --[Open speech]--
  28. wait(3)
  29. local Line = "scripted by alpha"
  30. for i = 1, #Line do
  31. Text.Text = string.sub(Line, 1, i)
  32. wait()
  33. end
  34. wait(1)
  35. for i = #Line, 0, -1 do
  36. Text.Text = string.sub(Line, 1, i)
  37. wait()
  38. end
  39. wait(1)
  40. local Line = "script kiddie"
  41. for i = 1, #Line do
  42. Text.Text = string.sub(Line, 1, i)
  43. wait()
  44. end
  45.  
  46. --[Character]--
  47. character.Shirt.ShirtTemplate = "rbxassetid://553865259"
  48. character.Pants.PantsTemplate = "rbxassetid://454930932"
  49.  
  50. local Accessorys = character:GetChildren()
  51. for i = 1, #Accessorys do
  52. local Accessory = Accessorys[i]
  53. if Accessory:IsA("Accessory") then
  54. Accessory:Destroy()
  55. end
  56. if Accessory:IsA("ShirtGraphic") then
  57. Accessory:Destroy()
  58. end
  59. end
  60.  
  61. local Cap = Instance.new("Accessory")
  62. Cap.Parent = character
  63. Cap.Name = "Cap"
  64. local CapPart = Instance.new("Part")
  65. CapPart.Parent = Cap
  66. CapPart.Name = "Handle"
  67. local Attatchment = Instance.new("Attachment")
  68. Attatchment.Name = "HatAttachment"
  69. Attatchment.Parent = CapPart
  70. Attatchment.Position = Vector3.new(0, 0.4, 0)
  71. local Mesh = Instance.new("SpecialMesh")
  72. Mesh.Parent = CapPart
  73. Mesh.MeshId = "http://www.roblox.com/asset/?id=1028604"
  74. Mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
  75. Mesh.TextureId = "http://www.roblox.com/asset/?id=1028605"
  76. Mesh.VertexColor = Vector3.new(1, 1, 1)
  77. Mesh.Offset = Vector3.new(0, 0.65, -0.15)
  78. local Weld = Instance.new("Weld")
  79. Weld.Part0 = CapPart
  80. Weld.Part1 = character.Head
  81. Weld.Parent = CapPart
  82.  
  83. local BatPart = Instance.new("Part")
  84. BatPart.Name = "Bat"
  85. BatPart.Parent = character
  86. local Weld2 = Instance.new("Weld")
  87. Weld2.Part0 = BatPart
  88. Weld2.Part1 = character["Right Arm"]
  89. Weld2.Parent = BatPart
  90. Weld2.C0 = Weld2.C0 * CFrame.Angles(math.rad(180), 0, 0)
  91. local Mesh2 = Instance.new("SpecialMesh")
  92. Mesh2.Parent = BatPart
  93. Mesh2.MeshId = "http://www.roblox.com/asset/?id=54983181"
  94. Mesh2.Scale = Vector3.new(3, 3, 1.8)
  95. Mesh2.TextureId = "http://www.roblox.com/asset/?id=54983107"
  96. Mesh2.VertexColor = Vector3.new(1, 1, 1)
  97. Mesh2.Offset = Vector3.new(0, 0.65, 1.4)
  98.  
  99. Mouse.Button1Down:Connect(function()
  100. BatPart.Touched:Connect(function(hit)
  101. if hit.Parent:FindFirstChild("Humanoid") then
  102. if hit.Parent.Name ~= owner.Name then
  103. hit.Parent.Torso.Position = hit.Parent.Torso.Position + Vector3.new(0, 0.1, 0)
  104. end
  105. end
  106. end)
  107. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement