ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script 📌
1.2k Views

Paragraph UI

Universal Script 📌Uploaded by
1 year ago
Please login to perform these actions:

Description

Execute to see the features

View Raw
Edited By: Nolanz Download


Comments
3
User profile picture
huynhtuanphat227 1 year ago
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Paste this into a LocalScript local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer or Players:GetPropertyChangedSignal("LocalPlayer"):Wait() -- Create the main screen GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "Paragrap*" screenGui.ResetOnS* = false screenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") -- Main container local container = Instance.new("Frame") container.Name = "MainContainer" container.Size = UDim2.new(0.8, 0, 0.7, 0) container.Position = UDim2.new(0.5, 0, 0.5, 0) container.AnchorPoint = Vector2.new(0.5, 0.5) container.BackgroundColor3 = Color3.fromRGB(30, 30, 40) container.ClipsDescendants = true container.Parent = screenGui -- Corner rounding local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0.05, 0) corner.Parent = container -- *le bar local *leBar = Instance.new("Frame") *leBar.Name = "*leBar" *leBar.Size = UDim2.new(1, 0, 0.1, 0) *leBar.BackgroundTransparency = 1 *leBar.Parent = container local *le = Instance.new("TextLabel") *le.Name = "*le" *le.Size = UDim2.new(0.9, 0, 1, 0) *le.Position = UDim2.new(0.05, 0, 0, 0) *le.BackgroundTransparency = 1 *le.Text = "Information Panel" *le.TextColor3 = Color3.fromRGB(255, 255, 255) *le.Font = Enum.Font.GothamBold *le.TextSize = UserInputService.TouchEnabled and 22 or 18 *le.TextXAlignment = Enum.TextXAlignment.Left *le.Parent = *leBar -- Close button local closeButton = Instance.new("TextButton") closeButton.Name = "CloseButton" closeButton.Size = UDim2.new(0.1, 0, 1, 0) closeButton.Position = UDim2.new(0.9, 0, 0, 0) closeB
User profile picture
XxGoodChildrenxX 1 year ago
Omg
User profile picture
yabutarcmiguel 1 year ago
is it real bro
Please Login to add a comment.