local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local CreditsLabel = Instance.new("TextLabel") ScreenGui.Parent = game.CoreGui local BackgroundFrame = Instance.new("Frame") BackgroundFrame.Parent = ScreenGui BackgroundFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) BackgroundFrame.Size = UDim2.new(0, 250, 0, 30) BackgroundFrame.Position = UDim2.new(0.5, -125, 0.5, -15) BackgroundFrame.BorderSizePixel = 2 BackgroundFrame.BorderColor3 = Color3.fromRGB(0, 255, 255) Frame.Parent = BackgroundFrame Frame.BackgroundColor3 = Color3.fromRGB(0, 255, 255) Frame.Size = UDim2.new(0, 0, 1, 0) Frame.BorderSizePixel = 0 local UIStroke = Instance.new("UIStroke", Frame) UIStroke.Thickness = 3 UIStroke.Color = Color3.fromRGB(0, 255, 255) UIStroke.Transparency = 0.3 TextLabel.Parent = ScreenGui TextLabel.Text = "Loading script, please wait... By YOUR_NAME" -- put your name or whatever TextLabel.Size = UDim2.new(0, 300, 0, 30) TextLabel.Position = UDim2.new(0.5, -150, 0.5, -50) TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BackgroundTransparency = 1 TextLabel.Font = Enum.Font.SourceSansBold TextLabel.TextSize = 16 local TextStroke = Instance.new("UIStroke", TextLabel) TextStroke.Thickness = 1.5 TextStroke.Color = Color3.fromRGB(0, 255, 255) TextStroke.Transparency = 0.4 local creditText = table.concat({ string.char(84, 104, 105, 115), string.char(32, 108, 111, 97, 100, 105, 110, 103), string.char(32, 115, 99, 114, 101, 101, 110), string.char(32, 119, 97, 115), string.char(32, 109, 97, 100, 101), string.char(32, 98, 121), string.char(32, 69, 120, 101, 99, 117, 116, 111, 114, 88) }, " ") CreditsLabel.Parent = ScreenGui CreditsLabel.Text = creditText CreditsLabel.Size = UDim2.new(0, 300, 0, 20) CreditsLabel.Position = UDim2.new(0.5, -150, 0.5, 30) CreditsLabel.TextColor3 = Color3.fromRGB(0, 0, 0) CreditsLabel.BackgroundTransparency = 1 CreditsLabel.Font = Enum.Font.SourceSansBold CreditsLabel.TextSize = 14 local CreditsStroke = Instance.new("UIStroke", CreditsLabel) CreditsStroke.Thickness = 1.5 CreditsStroke.Color = Color3.fromRGB(0, 255, 255) CreditsStroke.Transparency = 0.4 local TweenService = game:GetService("TweenService") local TweenInfo = TweenInfo.new(5.5, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut) local tween = TweenService:Create(Frame, TweenInfo, {Size = UDim2.new(1, 0, 1, 0)}) tween:Play() tween.Completed:Connect(function() ScreenGui:Destroy() loadstring(game:HttpGet("https://pastebin.com/raw/yGy8TBmh"))() -- put your script here end)