Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Made by Kiriot22
- lel
- --]]
- local plr = game:GetService("Players").LocalPlayer
- local char = plr.Character
- function FindInTable(t, n)
- for i,v in pairs(t) do
- if v == n then
- return true
- end
- end
- return false
- end
- function Say(text)
- local head = char.Head
- local fh = head:Clone()
- fh:ClearAllChildren()
- fh.Transparency = 1
- local bg = Instance.new("BillboardGui", fh)
- bg.Size = UDim2.new(6, 0, 6, 0)
- bg.StudsOffset = Vector3.new(0, 3, 0)
- local f = Instance.new("Frame", bg)
- f.Size = UDim2.new(1, 0, 1, 0)
- f.BackgroundTransparency = 1
- local tl = Instance.new("TextLabel", f)
- tl.BackgroundTransparency = 1
- tl.Size = UDim2.new(5, 0, 1, 0)
- tl.Position = UDim2.new(-2, 0, 0)
- tl.TextColor3 = Color3.new(1, 1, 1)
- tl.TextScaled = true
- tl.Text = ""
- tl.TextColor3 = BrickColor.new("Really black").Color
- tl.Font = Enum.Font.Fantasy
- tl.TextSize = 120
- fh.Parent = Instance.new("Model", plr.Character)
- local Joint = Instance.new("Weld", game.JointsService)
- Joint.Part0 = head
- Joint.Part1 = fh
- local letters = {}
- text:gsub(".",function(c) table.insert(letters,c) end)
- for i,v in pairs(letters) do
- tl.Text = tl.Text .. tostring(v)
- wait(1/20)
- end
- wait(1)
- fh.Parent:Destroy()
- end
- function ReloadChat() --hax
- local chat = plr:FindFirstChildOfClass'PlayerGui':FindFirstChild'SB_Chat'
- if chat then
- chat:Destroy()
- end
- plr.PlayerScripts.ChatScript:Destroy()
- game:GetService("Chat").ChatScript:Clone().Parent = plr.PlayerScripts
- plr:FindFirstChildOfClass'PlayerGui':WaitForChild'Chat'.Name = "SB_Chat"
- end
- function RunFromUrl(url)
- require(game:GetService'Players'.LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("ChatScript"):WaitForChild("ChatMain")).MessagePosted:fire("hl/" .. url)
- end
- ReloadChat()
- local ScriptsNames = {
- {
- Name = "Bendy Claws",
- Url = "https://pastebin.com/raw/S0kFNkp8"
- },
- {
- Name = "NOOT NOOT",
- Url = "https://pastebin.com/raw/13q6TJ2U"
- },
- }
- local Fat = {"op", "dank", "cool", "fun"}
- local rnd = math.random(1, #ScriptsNames)
- local randomscript = ScriptsNames[rnd]
- Say("Hello youtube")
- Say("And today I'm showcasing " .. randomscript.Name .. " script")
- Say("It is a very " .. Fat[math.random(1, #Fat)] .. " script")
- Say("Let me show you what it does")
- RunFromUrl(randomscript.Url)
- Say("Remember to leave a like and subscribe")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement