0% found this document useful (0 votes)
113 views4 pages

Message

The document outlines a script for a GUI in Roblox, specifically version 0.4 of 'c0end2027'. It includes functionalities such as sound effects, draggable frames, buttons for executing scripts, and features like 'Noclip' and 'Fly'. The script also implements hover effects and animations for a better user experience.

Uploaded by

ribnu8070
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
113 views4 pages

Message

The document outlines a script for a GUI in Roblox, specifically version 0.4 of 'c0end2027'. It includes functionalities such as sound effects, draggable frames, buttons for executing scripts, and features like 'Noclip' and 'Fly'. The script also implements hover effects and animations for a better user experience.

Uploaded by

ribnu8070
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

-- c0end2027 gui v.0.

local TweenService = game:GetService("TweenService")


local UserInputService = game:GetService("UserInputService")
local HttpService = game:GetService("HttpService")
local SoundService = game:GetService("SoundService")

-- Dźwięk kliknięcia
local clickSound = Instance.new("Sound")
clickSound.SoundId = "rbxassetid://452267918"
clickSound.Volume = 1
clickSound.Parent = SoundService

-- GUI
local gui = Instance.new("ScreenGui")
gui.Name = "c0end2027_GUI"
gui.ResetOnSpawn = false
gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

-- Ramka
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0, 0, 0, 0)
frame.Position = UDim2.new(0.5, 0, 0.5, 0)
frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
frame.BorderSizePixel = 2
frame.Active = true
frame.Draggable = true
frame.Visible = true
frame.Parent = gui

TweenService:Create(frame, TweenInfo.new(0.5, Enum.EasingStyle.Back,


Enum.EasingDirection.Out), {
Size = UDim2.new(0, 400, 0, 500),
Position = UDim2.new(0.5, -200, 0.5, -250)
}):Play()

-- Tytuł
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, -60, 0, 30)
title.Position = UDim2.new(0, 10, 0, 0)
title.BackgroundTransparency = 1
title.TextColor3 = Color3.fromRGB(255, 0, 0)
title.Font = Enum.Font.SourceSansBold
title.TextSize = 22
title.Text = ""
title.Parent = frame

local fullTitle = "c0end2027 gui v.0.4"


spawn(function()
for i = 1, #fullTitle do
title.Text = string.sub(fullTitle, 1, i)
wait(0.05)
end
end)

-- Obraz
local image = Instance.new("ImageLabel")
image.Size = UDim2.new(0, 40, 0, 40)
image.Position = UDim2.new(1, -45, 0, -5)
image.BackgroundTransparency = 1
image.Image = "rbxassetid://115257555168495"
image.ImageTransparency = 0.3
image.Parent = frame

-- Przycisk zamknięcia
local closeButton = Instance.new("TextButton")
closeButton.Text = "X"
closeButton.Size = UDim2.new(0, 30, 0, 30)
closeButton.Position = UDim2.new(1, -35, 0, 5)
closeButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
closeButton.Font = Enum.Font.SourceSansBold
closeButton.TextSize = 20
closeButton.BorderColor3 = Color3.fromRGB(255, 0, 0)
closeButton.Parent = frame

-- Hover efekt
local function applyHoverEffect(button)
button.MouseEnter:Connect(function()
TweenService:Create(button, TweenInfo.new(0.2), {BackgroundColor3 =
Color3.fromRGB(50, 0, 0)}):Play()
end)
button.MouseLeave:Connect(function()
TweenService:Create(button, TweenInfo.new(0.2), {BackgroundColor3 =
Color3.fromRGB(20, 20, 20)}):Play()
end)
end

-- Przycisk otwierania
local openButton = Instance.new("TextButton")
openButton.Text = "Otwórz GUI"
openButton.Size = UDim2.new(0, 120, 0, 40)
openButton.Position = UDim2.new(0, 10, 0, 10)
openButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
openButton.TextColor3 = Color3.fromRGB(255, 255, 255)
openButton.Font = Enum.Font.SourceSansBold
openButton.TextSize = 18
openButton.BorderColor3 = Color3.fromRGB(255, 0, 0)
openButton.Visible = false
openButton.Parent = gui
applyHoverEffect(openButton)

-- Pole na skrypt
local scriptBox = Instance.new("TextBox")
scriptBox.Size = UDim2.new(1, -20, 0, 100)
scriptBox.Position = UDim2.new(0, 10, 0, 40)
scriptBox.TextWrapped = true
scriptBox.TextYAlignment = Enum.TextYAlignment.Top
scriptBox.TextXAlignment = Enum.TextXAlignment.Left
scriptBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
scriptBox.TextColor3 = Color3.fromRGB(255, 255, 255)
scriptBox.Font = Enum.Font.Code
scriptBox.TextSize = 14
scriptBox.ClearTextOnFocus = false
scriptBox.MultiLine = true
scriptBox.Text = "-- Wpisz swój skrypt tutaj"
scriptBox.Parent = frame
-- Przyciski
local function createButton(text, posY, callback)
local btn = Instance.new("TextButton")
btn.Text = text
btn.Size = UDim2.new(1, -20, 0, 30)
btn.Position = UDim2.new(0, 10, 0, posY)
btn.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
btn.TextColor3 = Color3.fromRGB(255, 255, 255)
btn.Font = Enum.Font.SourceSansBold
btn.TextSize = 18
btn.BorderColor3 = Color3.fromRGB(255, 0, 0)
btn.MouseButton1Click:Connect(function()
clickSound:Play()
callback()
end)
btn.Parent = frame
applyHoverEffect(btn)
return btn
end

-- Zamknięcie GUI
closeButton.MouseButton1Click:Connect(function()
clickSound:Play()
TweenService:Create(frame, TweenInfo.new(0.3, Enum.EasingStyle.Quad,
Enum.EasingDirection.In), {
Size = UDim2.new(0, 0, 0, 0),
Position = UDim2.new(0.5, 0, 0.5, 0)
}):Play()
wait(0.3)
frame.Visible = false
openButton.Visible = true
end)

openButton.MouseButton1Click:Connect(function()
clickSound:Play()
frame.Visible = true
TweenService:Create(frame, TweenInfo.new(0.3, Enum.EasingStyle.Quad,
Enum.EasingDirection.Out), {
Size = UDim2.new(0, 400, 0, 500),
Position = UDim2.new(0.5, -200, 0.5, -250)
}):Play()
openButton.Visible = false
end)

-- Działania
createButton("Run Script", 150, function()
local success, err = pcall(function()
loadstring(scriptBox.Text)()
end)
if not success then
warn("Błąd:", err)
end
end)

createButton("Clear", 190, function()


scriptBox.Text = ""
end)
createButton("Fly", 230, function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Gui-Fly-
v3-37111"))()
end)

createButton("Sound", 270, function()


loadstring(game:HttpGet("https://raw.githubusercontent.com/nmalka01/nmalka01/
refs/heads/main/Brookhaven_audio"))()
end)

createButton("Admin", 310, function()


loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/
infiniteyield/master/source'),true))()
end)

local noclip = false


createButton("Noclip On/Off", 350, function()
noclip = not noclip
if noclip then
game:GetService('RunService').Stepped:Connect(function()
if noclip then
for _, v in
pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA("BasePart") then
v.CanCollide = false
end
end
end
end)
end
end)

You might also like