theScripter123123

Untitled

May 8th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1.  
  2.  
  3. angry = false -- ignore pls
  4. wait(2)
  5. normal = "http://www.roblox.com/asset/?id=2178100649"
  6. lp = game:GetService("Players").draknesblood -- change ur name of course
  7. pg = lp:FindFirstChildOfClass("PlayerGui")
  8. sg = Instance.new("ScreenGui",pg)
  9. tb = Instance.new("TextBox",sg)
  10. tb.Size = UDim2.new(0,200,0,50)
  11. tb.Position = UDim2.new(0.062,0,0.085,0)
  12. char = lp.Character
  13. gc = char:GetChildren()
  14. head = char.Head
  15. torso = char.Torso
  16. bgui2 = Instance.new("BillboardGui",torso)
  17. bgui2.Name = "TextGui"
  18. bgui2.Size = UDim2.new(0,500,0,1000)
  19. bgui2.Adornee = torso
  20. text = Instance.new("TextLabel",bgui2)
  21. text.BackgroundTransparency = 1
  22. text.Size = UDim2.new(0,500,0,100)
  23. text.Position = UDim2.new(0,0,0,250)
  24. text.TextColor3 = Color3.new(1,1,1)
  25. text.Font = Enum.Font.Cartoon
  26. text.Text = ""
  27. text.TextScaled = true
  28. hits = {"◘","○","△","X","[L1]","[L2]","[R1]","[R2]","▷","▭"}
  29. message = nil
  30. words = {}
  31. word = ""
  32.  
  33. tb.Text = "message and press say"
  34. tb.TextScaled = true
  35. ts = Instance.new("Sound",head)
  36. ts.Volume = 5
  37. ts.PlaybackSpeed = 1.5
  38. ts.SoundId = "rbxassetid://160715357"
  39. fs = Instance.new("Sound",head)
  40. fs.Volume = 5
  41. fs.PlaybackSpeed = 2
  42. fs.SoundId = "rbxassetid://131573697"
  43. tb2 = Instance.new("TextButton",sg)
  44. tb2.Size = tb.Size
  45. tb2.Position = UDim2.new(0.062,0,0.185,0)
  46. tb2.Text = "say"
  47. tb2.TextScaled = true
  48.  
  49.  
  50.  
  51. function changetext(msg)
  52. text.TextColor3 = Color3.new(0,0,0)
  53. for i=1, string.len(msg) do
  54. wait(0.15)
  55. ts:Play()
  56. text.Text = text.Text..hits[math.random(1,#hits)]
  57. end
  58. wait(0.1)
  59. text.TextColor3 = Color3.new(1,1,1)
  60. fs:Play()
  61. text.Text = msg
  62. wait(0.5)
  63. for i=1, 10 do
  64. wait(0.02)
  65. text.TextTransparency = text.TextTransparency + 0.1
  66. end
  67. text.Text = ""
  68. text.TextTransparency = 0
  69. end
  70.  
  71.  
  72.  
  73.  
  74. tb2.MouseButton1Click:connect(function()
  75. message = tb.Text
  76. tb.Text = "message and press say"
  77. changetext(message)
  78. end)
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86. bgui2.MaxDistance = 100
  87.  
  88. for i=1, #gc do
  89. if gc[i].ClassName == "Part" then
  90. gc[i].Transparency = 1
  91. if gc[i]:FindFirstChildOfClass("Decal") then
  92. gc[i]:FindFirstChildOfClass("Decal"):Destroy()
  93. end
  94. end
  95. if gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "Hat" or gc[i].ClassName == "Accessory" or gc[i].ClassName == "ShirtGraphic" or gc[i].ClassName == "ShirtGraphics" then
  96. gc[i]:Destroy()
  97. end
  98. end
  99. decalpart = Instance.new("Part",workspace)
  100. decalpart.Size = Vector3.new(4,4.5,0.1)
  101. decalpart.Anchored = true
  102. decalpart.CanCollide = false
  103. decalpart.Transparency = 1
  104. decalpart.Parent = char
  105. decal1 = Instance.new("Decal",decalpart)
  106. decal1.Face = Enum.NormalId.Front
  107. decal1.Texture = "http://www.roblox.com/asset/?id=2201836040"
  108. decal2 = Instance.new("Decal",decalpart)
  109. decal2.Face = Enum.NormalId.Back
  110. decal2.Texture = "http://www.roblox.com/asset/?id=2201836040"
  111. decalpart.Touched:connect(function(hit)
  112. if hit.Parent:FindFirstChildOfClass("Humanoid") and hit.Parent ~= char and hit.Parent.Parent ~= char then
  113. if angry then
  114. hit:BreakJoints()
  115. end
  116. end
  117. end)
  118.  
  119. while true do
  120. wait(0.01)
  121. decalpart.CFrame = head.CFrame - Vector3.new(0,2.5,0)
  122. end
Add Comment
Please, Sign In to add comment