Advertisement
xiaxiaokid

skid

Sep 11th, 2017
853
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. --a function--
  18. function Say(text)
  19.     local head = char.Head
  20.     local fh = head:Clone()
  21.     fh:ClearAllChildren()
  22.     fh.Transparency = 1
  23.     local bg = Instance.new("BillboardGui", fh)
  24.     bg.Size = UDim2.new(6, 0, 6, 0)
  25.     bg.StudsOffset = Vector3.new(0, 3, 0)
  26.     local f = Instance.new("Frame", bg)
  27.     f.Size = UDim2.new(1, 0, 1, 0)
  28.     f.BackgroundTransparency = 1
  29.     local tl = Instance.new("TextLabel", f)
  30.     tl.BackgroundTransparency = 1
  31.     tl.Size = UDim2.new(5, 0, 1, 0)
  32.     tl.Position = UDim2.new(-2, 0, 0)
  33.     tl.TextColor3 = Color3.new(1, 1, 1)
  34.     tl.TextScaled = true
  35.     tl.Text = ""
  36.     tl.TextColor3 = BrickColor.random().Color  
  37.     tl.Font = Enum.Font.Cartoon
  38.     tl.TextSize = 120
  39.     fh.Parent = Instance.new("Model", plr.Character)
  40.     local Joint = Instance.new("Weld", game.JointsService)
  41.     Joint.Part0 = head
  42.     Joint.Part1 = fh
  43.    
  44.     local letters = {}
  45.     text:gsub(".",function(c) table.insert(letters,c) end)
  46.     for i,v in pairs(letters) do
  47.         tl.Text = tl.Text .. tostring(v)
  48.         wait(1/20)
  49.     end
  50.     wait(1)
  51.     fh.Parent:Destroy()
  52. end
  53.  
  54. function ReloadChat() --hax
  55.     local chat = plr:FindFirstChildOfClass'PlayerGui':FindFirstChild'SB_Chat'
  56.     if chat then
  57.         chat:Destroy()
  58.     end
  59.     plr.PlayerScripts.ChatScript:Destroy()
  60.     game:GetService("Chat").ChatScript:Clone().Parent = plr.PlayerScripts
  61.     plr:FindFirstChildOfClass'PlayerGui':WaitForChild'Chat'.Name = "SB_Chat"
  62. end
  63.  
  64. function RunFromUrl(url)
  65.     require(game:GetService'Players'.LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("ChatScript"):WaitForChild("ChatMain")).MessagePosted:fire("hl/" .. url)
  66. end
  67.  
  68. ReloadChat()
  69.  
  70. local ScriptsNames = {
  71.     {
  72.         Name = "Guest 9015 (old version)",
  73.         Url = "https://pastebin.com/raw/mdNUwC5x"
  74.     },
  75.     {
  76.         Name = "skid",
  77.         Url = "https://pastebin.com/raw/Pf5kcGaJ"
  78.     },
  79.     {
  80.         Name = "Gold Radio",
  81.         Url = "https://pastebin.com/raw/SJcQD3zX"
  82.     },
  83.     {
  84.         Name = "N00b m0rph",
  85.         Url = "https://pastebin.com/raw/531MDgMD"
  86.     },
  87.     {
  88.         Name = "Flying plane",
  89.         Url = "https://pastebin.com/raw/9pKtz6sK"
  90.     },
  91.     {
  92.         Name = "xiaxiaokid's eh... script I guess",
  93.         Url = "https://pastebin.com/raw/NzaSSwq6"
  94.     },
  95.     {
  96.         Name = "rainbuh bet",
  97.         Url = "https://pastebin.com/raw/3hu8r56U"
  98.     },
  99.     {
  100.         Name = "Hackerman",
  101.         Url = "https://pastebin.com/raw/FWbG0NwV"
  102.     }
  103. }
  104. local Fat = {"op", "dank", "cool", "fun"}
  105.  
  106. local rnd = math.random(1, #ScriptsNames)
  107.  
  108. local randomscript = ScriptsNames[rnd]
  109.  
  110. Say("am skid")
  111. Say("And I'm gonna use " .. randomscript.Name .. " ")
  112. Say("It is a very " .. Fat[math.random(1, #Fat)] .. " script")
  113. Say("ill just run this skript!!1")
  114. RunFromUrl(randomscript.Url)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement