Back to Scripts
9x7x9x4x6 Gui Not Fe Safe

9x7x9x4x6 Gui Not Fe Safe

ScriptBlox
Universal Free

Game: Universal Script 📌

108 Views
0 Likes
0 Dislikes
Dr_Harkinian

Dr_Harkinian

offline

Features

Ffff

Script Code

-- Gui2Lua Advanced
local player = game:GetService('Players').LocalPlayer
local ScreenGui_1 = Instance.new("ScreenGui")
ScreenGui_1.Name = "ScreenGui"
ScreenGui_1.Parent = player:WaitForChild('PlayerGui')

local ImageLabel_1 = Instance.new("ImageLabel")
ImageLabel_1.Name = "ImageLabel"
ImageLabel_1.Parent = ScreenGui_1
ImageLabel_1.Size = UDim2.new(0, 400, 0, 500)
ImageLabel_1.Position = UDim2.new(0, 0, 0, 0)
ImageLabel_1.BackgroundColor3 = Color3.fromRGB(255, 134, 134)
ImageLabel_1.Visible = true
ImageLabel_1.Image = "rbxthumb://type=Asset&id=122639036587569&w=420&h=420"
ImageLabel_1.Transparency = 0

local UIDragDetector_1 = Instance.new("UIDragDetector")
UIDragDetector_1.Name = "UIDragDetector"
UIDragDetector_1.Parent = ImageLabel_1

local TextLabel_1 = Instance.new("TextLabel")
TextLabel_1.Name = "TextLabel"
TextLabel_1.Parent = ImageLabel_1
TextLabel_1.Size = UDim2.new(0, 400, 0, 30)
TextLabel_1.Position = UDim2.new(0, 0, 0, 0)
TextLabel_1.BackgroundColor3 = Color3.fromRGB(162, 162, 162)
TextLabel_1.Text = "9x7x9x4x6 Not Fe (Safe Version)"
TextLabel_1.Visible = true
TextLabel_1.Transparency = 1

local ImageButton_1 = Instance.new("ImageButton")
ImageButton_1.Name = "ImageButton"
ImageButton_1.Parent = ImageLabel_1
ImageButton_1.Size = UDim2.new(0, 380, 0, 50)
ImageButton_1.Position = UDim2.new(0, 10, 0, 450)
ImageButton_1.BackgroundColor3 = Color3.fromRGB(255, 134, 134)
ImageButton_1.Visible = true
ImageButton_1.Image = "rbxthumb://type=Asset&id=122639036587569&w=420&h=420"
ImageButton_1.Transparency = 0.30000001192092896
local function patnkpfe()
    local script = Instance.new("LocalScript", ImageButton_1)
    -- Click Check
    ImageButton_1.MouseButton1Click:Connect(function()
        local AMOUNT = 40
local BASE_DISTANCE = 7
local HEIGHT = 1
local SIZE = Vector3.new(0.3, 0.3, 0.3)

local BEAT_FORCE = 0.012
local SMOOTHING = 0.35

local COLOR_SPEED = 0.15
local PASTEL_SATURATION = 0.35
local PASTEL_BRIGHTNESS = 1

local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local SoundService = game:GetService("SoundService")

local player = Players.LocalPlayer
local character
local root

local diamonds = {}
local currentDistance = BASE_DISTANCE
local colorTime = 0

for i = 1, AMOUNT do
    local part = Instance.new("Part")
    part.Size = SIZE
    part.Anchored = true
    part.CanCollide = false
    part.Material = Enum.Material.Neon
    part.Parent = workspace

    diamonds[i] = {
        part = part,
        angle = (math.pi * 2 / AMOUNT) * i,
        colorOffset = i / AMOUNT
    }
end

local function setCharacter(char)
    character = char
    root = character:WaitForChild("HumanoidRootPart")
end

if player.Character then
    setCharacter(player.Character)
end

player.CharacterAdded:Connect(setCharacter)

local function getLoudness()
    local loudness = 0

    for _, obj in ipairs(workspace:GetDescendants()) do
        if obj:IsA("Sound") and obj.IsPlaying and obj.Volume > 0 then
            loudness = math.max(loudness, obj.PlaybackLoudness)
        end
    end

    for _, obj in ipairs(SoundService:GetDescendants()) do
        if obj:IsA("Sound") and obj.IsPlaying and obj.Volume > 0 then
            loudness = math.max(loudness, obj.PlaybackLoudness)
        end
    end

    return loudness
end

RunService.RenderStepped:Connect(function(dt)
    if not root then return end

    local loudness = getLoudness()
    colorTime += dt * COLOR_SPEED

    local target = BASE_DISTANCE - (loudness * BEAT_FORCE)
    target = math.clamp(target, BASE_DISTANCE - 2, BASE_DISTANCE)

    currentDistance += (target - currentDistance) * SMOOTHING

    for _, data in ipairs(diamonds) do
        local x = math.cos(data.angle) * currentDistance
        local z = math.sin(data.angle) * currentDistance

        local hue = (colorTime + data.colorOffset) % 1
        data.part.Color = Color3.fromHSV(hue, PASTEL_SATURATION, PASTEL_BRIGHTNESS)

        data.part.CFrame =
            CFrame.new(root.Position + Vector3.new(x, HEIGHT, z))
            * CFrame.Angles(math.rad(45), math.rad(45), 0)
    end
end)
    end)
end
coroutine.wrap(patnkpfe)()

local TextLabel_2 = Instance.new("TextLabel")
TextLabel_2.Name = "TextLabel"
TextLabel_2.Parent = ImageButton_1
TextLabel_2.Size = UDim2.new(0, 380, 0, 20)
TextLabel_2.Position = UDim2.new(0, 0, 0, 10)
TextLabel_2.BackgroundColor3 = Color3.fromRGB(162, 162, 162)
TextLabel_2.Text = "Visualer Ring Lua Remake"
TextLabel_2.Visible = true
TextLabel_2.Transparency = 0

local LocalScript_1 = Instance.new("LocalScript")
LocalScript_1.Name = "LocalScript"
LocalScript_1.Parent = ImageButton_1

local SLCodeTextBox_1 = Instance.new("TextBox")
SLCodeTextBox_1.Name = "SL_CodeTextBox"
SLCodeTextBox_1.Parent = LocalScript_1
SLCodeTextBox_1.Size = UDim2.new(1, 0, 1, 0)
SLCodeTextBox_1.Position = UDim2.new(0, 52, 0, 0)
SLCodeTextBox_1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SLCodeTextBox_1.Text = "--print(\"Hello, World!\")\
"
SLCodeTextBox_1.Visible = true
SLCodeTextBox_1.Transparency = 0

local SaveChangesTo_1 = Instance.new("ObjectValue")
SaveChangesTo_1.Name = "SaveChangesTo"
SaveChangesTo_1.Parent = SLCodeTextBox_1

local SLColorizeAndEditLocal_1 = Instance.new("LocalScript")
SLColorizeAndEditLocal_1.Name = "SL_ColorizeAndEditLocal"
SLColorizeAndEditLocal_1.Parent = SLCodeTextBox_1

local ImageButton_2 = Instance.new("ImageButton")
ImageButton_2.Name = "ImageButton"
ImageButton_2.Parent = ImageLabel_1
ImageButton_2.Size = UDim2.new(0, 380, 0, 50)
ImageButton_2.Position = UDim2.new(0, 10, 0, 50)
ImageButton_2.BackgroundColor3 = Color3.fromRGB(255, 134, 134)
ImageButton_2.Visible = true
ImageButton_2.Image = "rbxthumb://type=Asset&id=122639036587569&w=420&h=420"
ImageButton_2.Transparency = 0.30000001192092896
local function murrptld()
    local script = Instance.new("LocalScript", ImageButton_2)
    -- Click Check
    ImageButton_2.MouseButton1Click:Connect(function()
        loadstring(game:HttpGet("https://raw.githubusercontent.com/KenzoSSto1/GRAB-KNIFE-V4/refs/heads/main/grabknife.txt"))()
    end)
end
coroutine.wrap(murrptld)()

local TextLabel_3 = Instance.new("TextLabel")
TextLabel_3.Name = "TextLabel"
TextLabel_3.Parent = ImageButton_2
TextLabel_3.Size = UDim2.new(0, 380, 0, 20)
TextLabel_3.Position = UDim2.new(0, 0, 0, 10)
TextLabel_3.BackgroundColor3 = Color3.fromRGB(162, 162, 162)
TextLabel_3.Text = "Grab Knife"
TextLabel_3.Visible = true
TextLabel_3.Transparency = 0

local LocalScript_2 = Instance.new("LocalScript")
LocalScript_2.Name = "LocalScript"
LocalScript_2.Parent = ImageButton_2

local SLCodeTextBox_2 = Instance.new("TextBox")
SLCodeTextBox_2.Name = "SL_CodeTextBox"
SLCodeTextBox_2.Parent = LocalScript_2
SLCodeTextBox_2.Size = UDim2.new(1, 0, 1, 0)
SLCodeTextBox_2.Position = UDim2.new(0, 52, 0, 0)
SLCodeTextBox_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SLCodeTextBox_2.Text = "--print(\"Hello, World!\")\
"
SLCodeTextBox_2.Visible = true
SLCodeTextBox_2.Transparency = 0

local SaveChangesTo_2 = Instance.new("ObjectValue")
SaveChangesTo_2.Name = "SaveChangesTo"
SaveChangesTo_2.Parent = SLCodeTextBox_2

local SLColorizeAndEditLocal_2 = Instance.new("LocalScript")
SLColorizeAndEditLocal_2.Name = "SL_ColorizeAndEditLocal"
SLColorizeAndEditLocal_2.Parent = SLCodeTextBox_2

local ImageButton_3 = Instance.new("ImageButton")
ImageButton_3.Name = "ImageButton"
ImageButton_3.Parent = ImageLabel_1
ImageButton_3.Size = UDim2.new(0, 380, 0, 50)
ImageButton_3.Position = UDim2.new(0, 10, 0, 150)
ImageButton_3.BackgroundColor3 = Color3.fromRGB(255, 134, 134)
ImageButton_3.Visible = true
ImageButton_3.Image = "rbxthumb://type=Asset&id=122639036587569&w=420&h=420"
ImageButton_3.Transparency = 0.30000001192092896
local function qrbwddwlnj()
    local script = Instance.new("LocalScript", ImageButton_3)
    -- Click Check
    ImageButton_3.MouseButton1Click:Connect(function()
        local CharacterSystem = {}

function CharacterSystem.setup()
    local Players = game:GetService("Players")
    local player = Players.LocalPlayer
    
    
    local character = player.Character
    if not character then
        character = player.CharacterAdded:Wait()
    end
    
    local humanoid = character:FindFirstChildOfClass("Humanoid")
    if humanoid and humanoid.RigType == Enum.HumanoidRigType.R15 then
        CharacterSystem.convertCharacter(player, character)
        character = player.Character
    end
    
    CharacterSystem.loadAnimations(character)
end

function CharacterSystem.convertCharacter(player, originalChar)
    local Players = game:GetService("Players")
    
   
    local appearanceData = Players:GetHumanoidDescriptionFromUserId(player.CharacterAppearanceId)
    local newCharacter = Players:CreateHumanoidModelFromDescription(appearanceData, Enum.HumanoidRigType.R6)
    
   
    newCharacter.Name = ""
    
   
    local mainPart = newCharacter:FindFirstChild("HumanoidRootPart")
    if mainPart then
        newCharacter.PrimaryPart = mainPart
        local oldMainPart = originalChar:FindFirstChild("HumanoidRootPart")
        if oldMainPart then
            newCharacter:SetPrimaryPartCFrame(oldMainPart.CFrame)
        end
    end
    
    originalChar:Destroy()
    newCharacter.Parent = workspace
    player.Character = newCharacter
    
   
    local camera = workspace.CurrentCamera
    local newHumanoid = newCharacter:WaitForChild("Humanoid")
    camera.CameraSubject = newHumanoid
    camera.CameraType = Enum.CameraType.Custom
    
    return newCharacter
end

function CharacterSystem.loadAnimations(character)
    local humanoid = character:WaitForChild("Humanoid")
    
    -- анимации для r6
    local animationIds = {
        idle = "rbxassetid://180435571",
        walk = "rbxassetid://180426354",
        jump = "rbxassetid://125750702",
        fall = "rbxassetid://180436148"
    }
    
    local currentAnimation = nil
    local movementState = "idle"
    
    local function startAnimation(animId, speed)
        if currentAnimation then
            currentAnimation:Stop()
            currentAnimation:Destroy()
        end
        
        local newAnim = Instance.new("Animation")
        newAnim.AnimationId = animId
        
        currentAnimation = humanoid:LoadAnimation(newAnim)
        currentAnimation.Priority = Enum.AnimationPriority.Core
        
        if speed then
            currentAnimation:AdjustSpeed(speed)
        end
        
        currentAnimation:Play(0.1)
        return currentAnimation
    end
    
   
    humanoid.Running:Connect(function(speed)
        if speed > 1 then
            local speedRatio = speed / humanoid.WalkSpeed
            startAnimation(animationIds.walk, speedRatio)
            movementState = "walking"
        else
            startAnimation(animationIds.idle)
            movementState = "idle"
        end
    end)
    
    humanoid.Jumping:Connect(function()
        startAnimation(animationIds.jump)
        movementState = "jumping"
    end)
    
    humanoid.FreeFalling:Connect(function()
        if movementState ~= "jumping" then
            startAnimation(animationIds.fall)
            movementState = "falling"
        end
    end)
    
    humanoid.Died:Connect(function()
        movementState = "dead"
        if currentAnimation then
            currentAnimation:Stop()
        end
    end)
    
   
    startAnimation(animationIds.idle)
end

local PositionTracker = {}

function PositionTracker.init()
    local UserInputService = game:GetService("UserInputService")
    local Players = game:GetService("Players")
    local currentPlayer = Players.LocalPlayer
    
    local savedLocation = nil
    
   
    local function trackHealth()
        while true do
            wait(0.12)
            local char = currentPlayer.Character
            if char and char:FindFirstChild("Humanoid") then
                local hum = char.Humanoid
                if hum.Health <= 0 then
                    local root = char:FindFirstChild("HumanoidRootPart")
                    if root then
                        savedLocation = root.CFrame
                    end
                end
            end
        end
    end
    
   
    currentPlayer.CharacterAdded:Connect(function(newChar)
        local rootPart = newChar:WaitForChild("HumanoidRootPart")
        if savedLocation then
            wait(0.08)
            rootPart.CFrame = savedLocation
        end
    end)
    
   
    UserInputService.InputBegan:Connect(function(input)
        if input.KeyCode == Enum.KeyCode.Insert and savedLocation then
            local char = currentPlayer.Character
            if char and char:FindFirstChild("HumanoidRootPart") then
                char.HumanoidRootPart.CFrame = savedLocation
            end
        end
    end)
    
    spawn(trackHealth)
end

local function startSystem()
    CharacterSystem.setup()
    PositionTracker.init()
end

startSystem()
    end)
end
coroutine.wrap(qrbwddwlnj)()

local TextLabel_4 = Instance.new("TextLabel")
TextLabel_4.Name = "TextLabel"
TextLabel_4.Parent = ImageButton_3
TextLabel_4.Size = UDim2.new(0, 380, 0, 20)
TextLabel_4.Position = UDim2.new(0, 0, 0, 10)
TextLabel_4.BackgroundColor3 = Color3.fromRGB(162, 162, 162)
TextLabel_4.Text = "R15 To R6"
TextLabel_4.Visible = true
TextLabel_4.Transparency = 0

local LocalScript_3 = Instance.new("LocalScript")
LocalScript_3.Name = "LocalScript"
LocalScript_3.Parent = ImageButton_3

local SLCodeTextBox_3 = Instance.new("TextBox")
SLCodeTextBox_3.Name = "SL_CodeTextBox"
SLCodeTextBox_3.Parent = LocalScript_3
SLCodeTextBox_3.Size = UDim2.new(1, 0, 1, 0)
SLCodeTextBox_3.Position = UDim2.new(0, 52, 0, 0)
SLCodeTextBox_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SLCodeTextBox_3.Text = "--print(\"Hello, World!\")\
"
SLCodeTextBox_3.Visible = true
SLCodeTextBox_3.Transparency = 0

local SaveChangesTo_3 = Instance.new("ObjectValue")
SaveChangesTo_3.Name = "SaveChangesTo"
SaveChangesTo_3.Parent = SLCodeTextBox_3

local SLColorizeAndEditLocal_3 = Instance.new("LocalScript")
SLColorizeAndEditLocal_3.Name = "SL_ColorizeAndEditLocal"
SLColorizeAndEditLocal_3.Parent = SLCodeTextBox_3

local ImageButton_4 = Instance.new("ImageButton")
ImageButton_4.Name = "ImageButton"
ImageButton_4.Parent = ImageLabel_1
ImageButton_4.Size = UDim2.new(0, 380, 0, 50)
ImageButton_4.Position = UDim2.new(0, 10, 0, 250)
ImageButton_4.BackgroundColor3 = Color3.fromRGB(255, 134, 134)
ImageButton_4.Visible = true
ImageButton_4.Image = "rbxthumb://type=Asset&id=122639036587569&w=420&h=420"
ImageButton_4.Transparency = 0.30000001192092896
local function tzpwjmbq()
    local script = Instance.new("LocalScript", ImageButton_4)
    -- Click Check
    ImageButton_4.MouseButton1Click:Connect(function()
        local fff = "122639036587569"
local s = Instance.new("Sky")
s.Name = "Skybox Loxe"
s.Parent = game.Lighting

s.SkyboxBk = "http://www.roblox.com/asset/?id=" .. fff
s.SkyboxDn = "http://www.roblox.com/asset/?id=" .. fff
s.SkyboxFt = "http://www.roblox.com/asset/?id=" .. fff
s.SkyboxLf = "http://www.roblox.com/asset/?id=" .. fff
s.SkyboxRt = "http://www.roblox.com/asset/?id=" .. fff
s.SkyboxUp = "http://www.roblox.com/asset/?id=" .. fff
    end)
end
coroutine.wrap(tzpwjmbq)()

local TextLabel_5 = Instance.new("TextLabel")
TextLabel_5.Name = "TextLabel"
TextLabel_5.Parent = ImageButton_4
TextLabel_5.Size = UDim2.new(0, 380, 0, 20)
TextLabel_5.Position = UDim2.new(0, 0, 0, 10)
TextLabel_5.BackgroundColor3 = Color3.fromRGB(162, 162, 162)
TextLabel_5.Text = "9x7x9x4x6 Skybox"
TextLabel_5.Visible = true
TextLabel_5.Transparency = 0

local LocalScript_4 = Instance.new("LocalScript")
LocalScript_4.Name = "LocalScript"
LocalScript_4.Parent = ImageButton_4

local SLCodeTextBox_4 = Instance.new("TextBox")
SLCodeTextBox_4.Name = "SL_CodeTextBox"
SLCodeTextBox_4.Parent = LocalScript_4
SLCodeTextBox_4.Size = UDim2.new(1, 0, 1, 0)
SLCodeTextBox_4.Position = UDim2.new(0, 52, 0, 0)
SLCodeTextBox_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SLCodeTextBox_4.Text = "--print(\"Hello, World!\")\
"
SLCodeTextBox_4.Visible = true
SLCodeTextBox_4.Transparency = 0

local SaveChangesTo_4 = Instance.new("ObjectValue")
SaveChangesTo_4.Name = "SaveChangesTo"
SaveChangesTo_4.Parent = SLCodeTextBox_4

local SLColorizeAndEditLocal_4 = Instance.new("LocalScript")
SLColorizeAndEditLocal_4.Name = "SL_ColorizeAndEditLocal"
SLColorizeAndEditLocal_4.Parent = SLCodeTextBox_4

local ImageButton_5 = Instance.new("ImageButton")
ImageButton_5.Name = "ImageButton"
ImageButton_5.Parent = ImageLabel_1
ImageButton_5.Size = UDim2.new(0, 380, 0, 50)
ImageButton_5.Position = UDim2.new(0, 10, 0, 350)
ImageButton_5.BackgroundColor3 = Color3.fromRGB(255, 134, 134)
ImageButton_5.Visible = true
ImageButton_5.Image = "rbxthumb://type=Asset&id=122639036587569&w=420&h=420"
ImageButton_5.Transparency = 0.30000001192092896
local function eoqcmxv()
    local script = Instance.new("LocalScript", ImageButton_5)
    -- Click Check
    ImageButton_5.MouseButton1Click:Connect(function()
        imageOne = "http://www.roblox.com/asset/?id=169585459"
imageTwo = "http://www.roblox.com/asset/?id=169585475"
imageThree = "http://www.roblox.com/asset/?id=169585485"
imageFour = "http://www.roblox.com/asset/?id=169585502"
imageFive = "http://www.roblox.com/asset/?id=169585515"
imageSix = "http://www.roblox.com/asset/?id=169585502"
imageSeven = "http://www.roblox.com/asset/?id=169585485"
imageEight = "http://www.roblox.com/asset/?id=169585475"

Spooky = Instance.new("Sound", workspace)
Spooky.Name = "Spooky"
Spooky.SoundId = "rbxassetid://174270407"
Spooky.Volume = 15
Spooky.Looped = true
Spooky:Play()

Sky = Instance.new("Sky", game.Lighting)
Sky.SkyboxBk = imageOne
Sky.SkyboxDn = imageOne
Sky.SkyboxFt = imageOne
Sky.SkyboxLf = imageOne
Sky.SkyboxRt = imageOne
Sky.SkyboxUp = imageOne


while true do
    Sky.SkyboxBk = imageOne
    Sky.SkyboxDn = imageOne
    Sky.SkyboxFt = imageOne
    Sky.SkyboxLf = imageOne
    Sky.SkyboxRt = imageOne
    Sky.SkyboxUp = imageOne
    wait(0.15)
    Sky.SkyboxBk = imageTwo
    Sky.SkyboxDn = imageTwo
    Sky.SkyboxFt = imageTwo
    Sky.SkyboxLf = imageTwo
    Sky.SkyboxRt = imageTwo
    Sky.SkyboxUp = imageTwo
    wait(0.15)
    Sky.SkyboxBk = imageThree
    Sky.SkyboxDn = imageThree
    Sky.SkyboxFt = imageThree
    Sky.SkyboxLf = imageThree
    Sky.SkyboxRt = imageThree
    Sky.SkyboxUp = imageThree
    wait(0.15)
    Sky.SkyboxBk = imageFour
    Sky.SkyboxDn = imageFour
    Sky.SkyboxFt = imageFour
    Sky.SkyboxLf = imageFour
    Sky.SkyboxRt = imageFour
    Sky.SkyboxUp = imageFour
    wait(0.15)
    Sky.SkyboxBk = imageFive
    Sky.SkyboxDn = imageFive
    Sky.SkyboxFt = imageFive
    Sky.SkyboxLf = imageFive
    Sky.SkyboxRt = imageFive
    Sky.SkyboxUp = imageFive
    wait(0.15)
    Sky.SkyboxBk = imageSix
    Sky.SkyboxDn = imageSix
    Sky.SkyboxFt = imageSix
    Sky.SkyboxLf = imageSix
    Sky.SkyboxRt = imageSix
    Sky.SkyboxUp = imageSix
    wait(0.15)
    Sky.SkyboxBk = imageSeven
    Sky.SkyboxDn = imageSeven
    Sky.SkyboxFt = imageSeven
    Sky.SkyboxLf = imageSeven
    Sky.SkyboxRt = imageSeven
    Sky.SkyboxUp = imageSeven
    wait(0.15)
    Sky.SkyboxBk = imageEight
    Sky.SkyboxDn = imageEight
    Sky.SkyboxFt = imageEight
    Sky.SkyboxLf = imageEight
    Sky.SkyboxRt = imageEight
    Sky.SkyboxUp = imageEight
    wait(0.15)
    
end
    end)
end
coroutine.wrap(eoqcmxv)()

local TextLabel_6 = Instance.new("TextLabel")
TextLabel_6.Name = "TextLabel"
TextLabel_6.Parent = ImageButton_5
TextLabel_6.Size = UDim2.new(0, 380, 0, 20)
TextLabel_6.Position = UDim2.new(0, 0, 0, 10)
TextLabel_6.BackgroundColor3 = Color3.fromRGB(162, 162, 162)
TextLabel_6.Text = "Spooky Scary Skeleton Skybox"
TextLabel_6.Visible = true
TextLabel_6.Transparency = 0

local LocalScript_5 = Instance.new("LocalScript")
LocalScript_5.Name = "LocalScript"
LocalScript_5.Parent = ImageButton_5

local SLCodeTextBox_5 = Instance.new("TextBox")
SLCodeTextBox_5.Name = "SL_CodeTextBox"
SLCodeTextBox_5.Parent = LocalScript_5
SLCodeTextBox_5.Size = UDim2.new(1, 0, 1, 0)
SLCodeTextBox_5.Position = UDim2.new(0, 52, 0, 0)
SLCodeTextBox_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SLCodeTextBox_5.Text = "--print(\"Hello, World!\")\
"
SLCodeTextBox_5.Visible = true
SLCodeTextBox_5.Transparency = 0

local SaveChangesTo_5 = Instance.new("ObjectValue")
SaveChangesTo_5.Name = "SaveChangesTo"
SaveChangesTo_5.Parent = SLCodeTextBox_5

local SLColorizeAndEditLocal_5 = Instance.new("LocalScript")
SLColorizeAndEditLocal_5.Name = "SL_ColorizeAndEditLocal"
SLColorizeAndEditLocal_5.Parent = SLCodeTextBox_5

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...