Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function give(v)
- local ScreenGui = Instance.new("ScreenGui")
- local Folder = Instance.new("Folder")
- local Intro = Instance.new("Frame")
- local Line = Instance.new("Frame")
- local Exo = Instance.new("TextLabel")
- local Small = Instance.new("TextBox")
- local liner = Instance.new("TextLabel")
- ScreenGui.Parent = v.PlayerGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Folder.Parent = ScreenGui
- Intro.Name = "Intro"
- Intro.Parent = ScreenGui
- Intro.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
- Intro.BorderSizePixel = 0
- Intro.ClipsDescendants = true
- Intro.Position = UDim2.new(1, -362, 1, -165)
- Intro.Size = UDim2.new(0, 362, 0, 0)
- Intro.ZIndex = 2
- Line.Name = "Line"
- Line.Parent = Intro
- Line.BackgroundColor3 = Color3.fromRGB(255, 216, 0)
- Line.BorderSizePixel = 0
- Line.Position = UDim2.new(0.673568964, 0, 0.591212034, 0)
- Line.Size = UDim2.new(0, 0, 0, 6)
- Line.ZIndex = 2
- Exo.Name = "Exo"
- Exo.Parent = Intro
- Exo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Exo.BackgroundTransparency = 1.000
- Exo.Position = UDim2.new(-0.472375691, 0, 0.181282789, 0)
- Exo.Size = UDim2.new(0, 171, 0, 83)
- Exo.ZIndex = 2
- Exo.Font = Enum.Font.GothamBlack
- Exo.Text = "EXO"
- Exo.TextColor3 = Color3.fromRGB(255, 216, 0)
- Exo.TextSize = 60.000
- Exo.TextWrapped = true
- Small.Name = "Small"
- Small.Parent = Intro
- Small.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Small.BackgroundTransparency = 1.000
- Small.Position = UDim2.new(0.430999994, 0, 1, 0)
- Small.Size = UDim2.new(0, 158, 0, 26)
- Small.ZIndex = 2
- Small.Font = Enum.Font.GothamBlack
- Small.Text = "a"
- Small.TextColor3 = Color3.fromRGB(255, 255, 255)
- Small.TextSize = 25.000
- liner.Name = "liner"
- liner.Parent = Intro
- liner.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- liner.BackgroundTransparency = 1.000
- liner.Position = UDim2.new(1, 0, 0.181282789, 0)
- liner.Size = UDim2.new(0, 171, 0, 83)
- liner.ZIndex = 2
- liner.Font = Enum.Font.GothamBlack
- liner.Text = "LINER"
- liner.TextColor3 = Color3.fromRGB(255, 255, 255)
- liner.TextSize = 60.000
- liner.TextWrapped = true
- local EStyle = Enum.EasingStyle
- local Linear = EStyle.Linear
- local Quad = EStyle.Quad
- local EDirection = Enum.EasingDirection
- local In = EDirection.In
- local Out = EDirection.Out
- local Intro = Intro
- local Line = Intro.Line
- local Exo = Intro.Exo
- local Small = Intro.Small
- local Liner = Intro.liner
- local function Tween(Object, Time, Style, Direction, Customization)
- if Style == nil then
- game:GetService("TweenService"):Create(Object, TweenInfo.new(Time), Customization):Play()
- else
- game:GetService("TweenService"):Create(Object, TweenInfo.new(Time, Style, Direction), Customization):Play()
- end
- end
- wait(1)
- Small.Text = 'SERVERSIDE'
- Tween(Intro, .4, nil, nil, {Size = UDim2.new(0, 362, 0, 165)})
- wait(.45)
- Tween(Exo, .4, nil, nil, {Position = UDim2.new(.019, 0, .181, 0)})
- Tween(Liner, .4, nil, nil, {Position = UDim2.new(.414, 0, .181, 0)})
- wait(.45)
- Tween(Line, .4, nil, nil, {Position = UDim2.new(.425, 0, .591, 0), Size = UDim2.new(0, 167, 0, 6)})
- Tween(Small, .4, nil, nil, {Position = UDim2.new(.431, 0, .651, 0)})
- wait(1)
- Tween(Small, .4, nil, nil, {Position = UDim2.new(.431, 0, 1, 0)})
- wait(.45)
- Small.Text = "Teefus#0001"
- Tween(Small, .4, nil, nil, {Position = UDim2.new(.431, 0, .651, 0)})
- wait(.75)
- Tween(Small, .4, nil, nil, {Position = UDim2.new(.431, 0, 1, 0)})
- wait(.4)
- Tween(Line, .4, nil, nil, {Position = UDim2.new(.674, 0, .591, 0), Size = UDim2.new(0, 0, 0, 6)})
- wait(.4)
- Tween(Exo, .4, nil, nil, {Position = UDim2.new(-.472, 0, .181, 0)})
- Tween(Liner, .4, nil, nil, {Position = UDim2.new(1, 0, .181, 0)})
- wait(.45)
- Tween(Intro, .4, nil, nil, {Size = UDim2.new(0, 362, 0, 0)})
- wait(.42)
- Intro:Destroy()
- end
- for i,v in pairs(game:GetService("Players"):GetPlayers()) do
- spawn(function()
- give(v)
- end)
- end
Add Comment
Please, Sign In to add comment