Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- intro made by water_hax
- local intro = Instance.new("ScreenGui")
- local O = Instance.new("Frame")
- local GG = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local credit = Instance.new("TextLabel")
- intro.Name = "intro"
- intro.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- intro.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- O.Name = "O"
- O.Parent = intro
- O.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- O.BorderColor3 = Color3.fromRGB(0, 0, 0)
- O.BorderSizePixel = 0
- O.Position = UDim2.new(0.312863082, 0, 0.263959378, 0)
- O.Size = UDim2.new(0, 230, 0, 235)
- GG.Name = "GG"
- GG.Parent = O
- GG.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
- GG.BorderColor3 = Color3.fromRGB(0, 0, 0)
- GG.BorderSizePixel = 0
- GG.Position = UDim2.new(0.997257769, 0, -0.00104409072, 0)
- GG.Size = UDim2.new(0, 230, 0, 235)
- title.Name = "title"
- title.Parent = O
- title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- title.BackgroundTransparency = 1.000
- title.BorderColor3 = Color3.fromRGB(0, 0, 0)
- title.BorderSizePixel = 0
- title.Position = UDim2.new(0.221738994, 0, 0.217021272, 0)
- title.Size = UDim2.new(0, 255, 0, 50)
- title.ZIndex = 1111111116
- title.Font = Enum.Font.JosefinSans
- title.Text = "Server Script Panel"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.TextSize = 32.000
- credit.Name = "credit"
- credit.Parent = O
- credit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- credit.BackgroundTransparency = 1.000
- credit.BorderColor3 = Color3.fromRGB(0, 0, 0)
- credit.BorderSizePixel = 0
- credit.Position = UDim2.new(1.23478258, 0, 0.842553198, 0)
- credit.Size = UDim2.new(0, 167, 0, 36)
- credit.ZIndex = 165
- credit.Font = Enum.Font.JosefinSans
- credit.Text = "Developed By waterhax"
- credit.TextColor3 = Color3.fromRGB(255, 255, 255)
- credit.TextSize = 15.000
- local function LPEJ_fake_script()
- local script = Instance.new('LocalScript', O)
- local Tween = game:GetService("TweenService")
- local OG_Size = UDim2.new(0, 230,0, 1)
- local EndSize = UDim2.new(0, 230,0, 235)
- local GoLeft = UDim2.new(0, -1,0, 235)
- local OFRAME = script.Parent
- local GGFrame = OFRAME.GG
- local title = OFRAME.title
- local credit = OFRAME.credit
- local function Hide()
- OFRAME.Size = OG_Size
- GGFrame.Size = OG_Size
- title.Visible = false
- credit.Visible = false
- end
- local function Open()
- Tween:Create(OFRAME, TweenInfo.new(0.5), {Size = EndSize}):Play()
- Tween:Create(GGFrame, TweenInfo.new(0.5), {Size = EndSize}):Play()
- title.Visible = true
- credit.Visible = true
- end
- local function Goto()
- Tween:Create(GGFrame, TweenInfo.new(0.5), {Size = GoLeft}):Play()
- Tween:Create(OFRAME, TweenInfo.new(0.5), {Size = GoLeft}):Play()
- wait()
- title.Visible = false
- credit.Visible = false
- task.wait(0.4)
- OFRAME.Visible = false
- GGFrame.Visible = false
- end
- Hide()
- Open()
- wait(1)
- Goto()
- task.wait(0.5)
- OFRAME.Parent:Destroy()
- end
- coroutine.wrap(LPEJ_fake_script)()
Add Comment
Please, Sign In to add comment