Our search systems are undergoing rapid maintenance, they may be intermittently unavailable. Sorry for the inconvenience!
Universal Script 📌
979 Views

free small gui

Universal Script 📌Uploaded by
11 months ago
Please login to perform these actions:

Description

you can change the script yourself

View Raw
Edited By: ZENNA Download


Comments
2
User profile picture
Cobaltar 11 months ago
Cool
User profile picture
YouKnowMeAndIKnowYou 11 months ago
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 200, 0, 100) Frame.Position = UDim2.new(0.5, -100, 0.5, -50) Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame.BorderSizePixel = 1 Frame.Parent = ScreenGui local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = Frame local *le = Instance.new("TextLabel") *le.Size = UDim2.new(1, 0, 0, 30) *le.Position = UDim2.new(0, 0, 0, 0) *le.BackgroundColor3 = Color3.fromRGB(255, 255, 255) *le.Text = "insert_name_here" *le.TextColor3 = Color3.fromRGB(0, 0, 0) *le.TextSize = 24 *le.Font = Enum.Font.SourceSansBold *le.Parent = Frame local Button = Instance.new("TextButton") Button.Size = UDim2.new(0.5, 0, 0.5, 0) Button.Position = UDim2.new(0.25, 0, 0.5, 0) Button.BackgroundColor3 = Color3.fromRGB(0, 255, 0) Button.Text = "insert_activity_on_here" Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.TextSize = 24 Button.Font = Enum.Font.SourceSansBold Button.Parent = Frame local isOn = false local function updateColor() local hue = tick() % 6 local color = Color3.fromHSV(hue, 1, 1) Frame.BackgroundColor3 = color UICorner.CornerRadius = UDim.new(0, 10 + math.sin(tick() * 5) * 5) end game:GetService("RunService").RenderStepped:Connect(updateColor) Button.MouseButton1Click:Connect(function() if isOn then Button.Text = "insert_activity_on_here" Button.BackgroundColor3 = Color3.fromRGB(0, 255, 0) else Button.Text = "insert_activity_off_here" Button.BackgroundColor3 = Color3.fromRGB
Please Login to add a comment.