carlosname

Untitled

Oct 8th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. local plr = game:GetService("Players").LocalPlayer
  3. local char = plr.Character
  4.  
  5. function FindInTable(t, n)
  6. for i,v in pairs(t) do
  7. if v == n then
  8. return true
  9. end
  10. end
  11. return false
  12. end
  13. --Transformaaaaation--
  14. char["Left Arm"].BrickColor = BrickColor.new("Medium stone")
  15. char["Right Arm"].BrickColor = BrickColor.new("Medium stone")
  16. char.Head.BrickColor = BrickColor.new("Medium stone")
  17. char["Left Leg"].BrickColor = BrickColor.new("Medium stone")
  18. char["Right Leg"].BrickColor = BrickColor.new("Medium stone")
  19.  
  20. for i,v in pairs(char:children'') do
  21. local toremove = {"CharacterMesh", "Shirt", "Pants", "ShirtGraphic", "Accessory"}
  22. if FindInTable(toremove, v.ClassName) then v:Destroy() end
  23. if v.ClassName == "BodyColors" then
  24. v.HeadColor = BrickColor.new("Medium stone")
  25. v.LeftArmColor = BrickColor.new("Medium stone")
  26. v.LeftLegColor = BrickColor.new("Medium stone")
  27. v.RightArmColor = BrickColor.new("Medium stone")
  28. v.RightLegColor = BrickColor.new("Medium stone")
  29. v.TorsoColor = BrickColor.new("Medium stone")
  30. end
  31. end
  32.  
  33. local face = char.Head:FindFirstChild'face' if face then face.Texture = "http://www.roblox.com/asset/?id=13038247" end
  34. Instance.new("Shirt", char).ShirtTemplate = "http://www.roblox.com/asset/?id=120599107"
  35. Instance.new("Pants", char).PantsTemplate = "http://www.roblox.com/asset/?id=281982286"
  36. local function CreateHat(name, meshid, textureid)
  37. local h = Instance.new("Accessory")
  38. h.Name = name
  39. local han = Instance.new("Part", h)
  40. han.Name = "Handle"
  41. local mesh = Instance.new("SpecialMesh", han)
  42. mesh.Name = "Mesh"
  43. mesh.MeshId = meshid
  44. mesh.TextureId = textureid
  45. return h,han,mesh
  46. end
  47. hum = char:FindFirstChildOfClass'Humanoid'
  48. local h,han,mesh = CreateHat("2LEGITOwl", "http://www.roblox.com/asset/?id=329798434", "http://www.roblox.com/asset/?id=329790966")
  49. han.Size = Vector3.new(1, 1, 1)
  50. mesh.Scale = Vector3.new(0.3, 0.3, 0.3)
  51. h.AttachmentPos = Vector3.new(1.1, 0.38, 0)
  52. hum:AddAccessory(h)
  53. h,han,mesh = CreateHat("RobloxScarf", "http://www.roblox.com/asset/?id=138054351", "http://www.roblox.com/asset/?id=138052904")
  54. mesh.Scale = Vector3.new(3, 3, 3)
  55. han.Size = Vector3.new(1.9, 2, 2)
  56. h.AttachmentPos = Vector3.new(0, 1.54, 0.1)
  57. hum:AddAccessory(h)
  58. h,han,mesh = CreateHat("Ultra-Fabulous Hair", "http://www.roblox.com/asset/?id=16627529", "http://www.roblox.com/asset/?id=16627494")
  59. mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
  60. han.Size = Vector3.new(2, 2, 2)
  61. hum:AddAccessory(h)
  62. --a function--
  63. function Say(text)
  64. local head = char.Head
  65. local fh = head:Clone()
  66. fh:ClearAllChildren()
  67. fh.Transparency = 1
  68. local bg = Instance.new("BillboardGui", fh)
  69. bg.Size = UDim2.new(6, 0, 6, 0)
  70. bg.StudsOffset = Vector3.new(0, 3, 0)
  71. local f = Instance.new("Frame", bg)
  72. f.Size = UDim2.new(1, 0, 1, 0)
  73. f.BackgroundTransparency = 1
  74. local tl = Instance.new("TextLabel", f)
  75. tl.BackgroundTransparency = 1
  76. tl.Size = UDim2.new(5, 0, 1, 0)
  77. tl.Position = UDim2.new(-2, 0, 0)
  78. tl.TextColor3 = Color3.new(1, 1, 1)
  79. tl.TextScaled = true
  80. tl.Text = ""
  81. tl.TextColor3 = BrickColor.new("Really black").Color
  82. tl.Font = Enum.Font.Fantasy
  83. tl.TextSize = 120
  84. fh.Parent = Instance.new("Model", plr.Character)
  85. local Joint = Instance.new("Weld", game.JointsService)
  86. Joint.Part0 = head
  87. Joint.Part1 = fh
  88.  
  89. local letters = {}
  90. text:gsub(".",function(c) table.insert(letters,c) end)
  91. for i,v in pairs(letters) do
  92. tl.Text = tl.Text .. tostring(v)
  93. wait(1/20)
  94. end
  95. wait(1)
  96. fh.Parent:Destroy()
  97. end
  98.  
  99. function ReloadChat() --hax
  100. local chat = plr:FindFirstChildOfClass'PlayerGui':FindFirstChild'SB_Chat'
  101. if chat then
  102. chat:Destroy()
  103. end
  104. plr.PlayerScripts.ChatScript:Destroy()
  105. game:GetService("Chat").ChatScript:Clone().Parent = plr.PlayerScripts
  106. plr:FindFirstChildOfClass'PlayerGui':WaitForChild'Chat'.Name = "SB_Chat"
  107. end
  108.  
  109. function RunFromUrl(url)
  110. require(game:GetService'Players'.LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("ChatScript"):WaitForChild("ChatMain")).MessagePosted:fire("hl/" .. url)
  111. end
  112.  
  113. ReloadChat()
  114.  
  115. local ScriptsNames = {
  116. {
  117. Name = "Super Saiyan Blue",
  118. Url = "https://pastebin.com/raw/UgXfsbYS"
  119. },
  120. {
  121. Name = "Fendam Gloves",
  122. Url = "https://pastebin.com/raw/90HRSgBs"
  123. },
  124. {
  125. Name = "Star Platinum",
  126. Url = "https://pastebin.com/raw/EMWWhn5b"
  127. },
  128. {
  129. Name = "Rokan",
  130. Url = "https://pastebin.com/raw/bpmdzUtm"
  131. },
  132. {
  133. Name = "Gold Gloves",
  134. Url = "https://pastebin.com/raw/eB5Mgbgy"
  135. },
  136. {
  137. Name = "Yukio Katana",
  138. Url = "https://pastebin.com/raw/gQsL8yG5"
  139. },
  140. {
  141. Name = "NeoHerba Sword",
  142. Url = "https://pastebin.com/raw/4MqKFFCh"
  143. },
  144. {
  145. Name = "Broly",
  146. Url = "https://pastebin.com/raw/1v5U8YqP"
  147. }
  148. }
  149. local Fat = {"Cool", "Pro", "Great", "Super"}
  150.  
  151. local rnd = math.random(1, #ScriptsNames)
  152.  
  153. local randomscript = ScriptsNames[rnd]
  154.  
  155. Say("So,Today.....")
  156. Say("I would use " .. randomscript.Name .. " as a script.")
  157. Say("It's just about that " .. Fat[math.random(1, #Fat)] .. " script")
  158. Say("I am going to use this script.")
  159. RunFromUrl(randomscript.Url)
  160. Say("Yes! This Script works
Advertisement
Add Comment
Please, Sign In to add comment