Advertisement
memberhero

thing

Dec 21st, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. --[[
  2. Made by Kiriot22
  3. lel
  4. --]]
  5. local plr = game:GetService("Players").LocalPlayer
  6. local char = plr.Character
  7.  
  8. function FindInTable(t, n)
  9. for i,v in pairs(t) do
  10. if v == n then
  11. return true
  12. end
  13. end
  14. return false
  15. end
  16.  
  17. function Say(text)
  18. local head = char.Head
  19. local fh = head:Clone()
  20. fh:ClearAllChildren()
  21. fh.Transparency = 1
  22. local bg = Instance.new("BillboardGui", fh)
  23. bg.Size = UDim2.new(6, 0, 6, 0)
  24. bg.StudsOffset = Vector3.new(0, 3, 0)
  25. local f = Instance.new("Frame", bg)
  26. f.Size = UDim2.new(1, 0, 1, 0)
  27. f.BackgroundTransparency = 1
  28. local tl = Instance.new("TextLabel", f)
  29. tl.BackgroundTransparency = 1
  30. tl.Size = UDim2.new(5, 0, 1, 0)
  31. tl.Position = UDim2.new(-2, 0, 0)
  32. tl.TextColor3 = Color3.new(1, 1, 1)
  33. tl.TextScaled = true
  34. tl.Text = ""
  35. tl.TextColor3 = BrickColor.new("Really black").Color
  36. tl.Font = Enum.Font.Fantasy
  37. tl.TextSize = 120
  38. fh.Parent = Instance.new("Model", plr.Character)
  39. local Joint = Instance.new("Weld", game.JointsService)
  40. Joint.Part0 = head
  41. Joint.Part1 = fh
  42.  
  43. local letters = {}
  44. text:gsub(".",function(c) table.insert(letters,c) end)
  45. for i,v in pairs(letters) do
  46. tl.Text = tl.Text .. tostring(v)
  47. wait(1/20)
  48. end
  49. wait(1)
  50. fh.Parent:Destroy()
  51. end
  52.  
  53. function ReloadChat() --hax
  54. local chat = plr:FindFirstChildOfClass'PlayerGui':FindFirstChild'SB_Chat'
  55. if chat then
  56. chat:Destroy()
  57. end
  58. plr.PlayerScripts.ChatScript:Destroy()
  59. game:GetService("Chat").ChatScript:Clone().Parent = plr.PlayerScripts
  60. plr:FindFirstChildOfClass'PlayerGui':WaitForChild'Chat'.Name = "SB_Chat"
  61. end
  62.  
  63. function RunFromUrl(url)
  64. require(game:GetService'Players'.LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("ChatScript"):WaitForChild("ChatMain")).MessagePosted:fire("hl/" .. url)
  65. end
  66.  
  67. ReloadChat()
  68.  
  69. local ScriptsNames = {
  70. {
  71. Name = "Bendy Claws",
  72. Url = "https://pastebin.com/raw/S0kFNkp8"
  73. },
  74. {
  75. Name = "NOOT NOOT",
  76. Url = "https://pastebin.com/raw/13q6TJ2U"
  77. },
  78. }
  79. local Fat = {"op", "dank", "cool", "fun"}
  80.  
  81. local rnd = math.random(1, #ScriptsNames)
  82.  
  83. local randomscript = ScriptsNames[rnd]
  84.  
  85. Say("Hello youtube")
  86. Say("And today I'm showcasing " .. randomscript.Name .. " script")
  87. Say("It is a very " .. Fat[math.random(1, #Fat)] .. " script")
  88. Say("Let me show you what it does")
  89. RunFromUrl(randomscript.Url)
  90. Say("Remember to leave a like and subscribe")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement