100% found this document useful (4 votes)
20K views6 pages

C00lkidd Gui v2

This document outlines the creation of a GUI in Roblox using Lua scripting. It includes various buttons that trigger different actions, such as changing the skybox, adding decals, emitting particles, and displaying messages. The GUI is designed to enhance user interaction within the game environment.

Uploaded by

podcastamontada
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
100% found this document useful (4 votes)
20K views6 pages

C00lkidd Gui v2

This document outlines the creation of a GUI in Roblox using Lua scripting. It includes various buttons that trigger different actions, such as changing the skybox, adding decals, emitting particles, and displaying messages. The GUI is designed to enhance user interaction within the game environment.

Uploaded by

podcastamontada
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/ 6

--- This GUI made by !

Ghost#90

-- Instances:
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextButton = Instance.new("TextLabel")
local idk = Instance.new("TextButton")
local idk1 = Instance.new("TextButton")
local idk2 = Instance.new("TextButton")
local idk3 = Instance.new("TextButton")
local idk4 = Instance.new("TextButton")
local idk5 = Instance.new("TextButton")
local idk6 = Instance.new("TextButton")
local idk7 = Instance.new("TextButton")
local idk8 = Instance.new("TextButton")
local idk9 = Instance.new("TextButton")
local idk12 = Instance.new("TextButton")
local idk13 = Instance.new("TextButton")
local idk14 = Instance.new("TextButton")
local close = Instance.new("TextButton")

-- Properties:
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ResetOnSpawn = false

Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
Frame.Position = UDim2.new(0.369825214, 0, 0.423832893, 0)
Frame.Size = UDim2.new(0, 350, 0, 250)
Frame.Active = true
Frame.Draggable = true

TextButton.Parent = Frame
TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
TextButton.Position = UDim2.new(0.01, 0, 0.00832893, 0)
TextButton.Size = UDim2.new(0, 303, 0, 35)
TextButton.Font = Enum.Font.Cartoon
TextButton.Text = "c00lkidd gui v2"
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton.TextSize = 40.000

idk.Parent = Frame
idk.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk.Position = UDim2.new(0.01, 0, 0.2, 0)
idk.Size = UDim2.new(0, 94, 0, 35)
idk.Font = Enum.Font.Cartoon
idk.Text = "skybox"
idk.TextColor3 = Color3.fromRGB(0, 0, 0)
idk.TextSize = 20.000
idk.MouseButton1Down:connect(function()
local sky = Instance.new("Sky", game:GetService("Lighting"))
sky.SkyboxBk = "http://www.roblox.com/asset/?id=140285861217913"
sky.SkyboxFt = "http://www.roblox.com/asset/?id=140285861217913"
sky.SkyboxLf = "http://www.roblox.com/asset/?id=140285861217913"
sky.SkyboxRt = "http://www.roblox.com/asset/?id=140285861217913"
sky.SkyboxUp = "http://www.roblox.com/asset/?id=140285861217913"
sky.SkyboxDn = "http://www.roblox.com/asset/?id=140285861217913"
end)
idk1.Parent = Frame
idk1.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk1.Position = UDim2.new(0.01, 0, 0.4, 0)
idk1.Size = UDim2.new(0, 94, 0, 35)
idk1.Font = Enum.Font.Cartoon
idk1.Text = "Decal"
idk1.TextColor3 = Color3.fromRGB(0, 0, 0)
idk1.TextSize = 20.000
idk1.MouseButton1Down:connect(function()
local decalID = 16761646077
function exPro(root)
for _, v in pairs(root:GetChildren()) do
if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?
id="..decalID then
v.Parent = nil
elseif v:IsA("BasePart") then
v.Material = "Plastic"
v.Transparency = 0
local One = Instance.new("Decal", v)
local Two = Instance.new("Decal", v)
local Three = Instance.new("Decal", v)
local Four = Instance.new("Decal", v)
local Five = Instance.new("Decal", v)
local Six = Instance.new("Decal", v)
One.Texture = "http://www.roblox.com/asset/?id="..decalID
Two.Texture = "http://www.roblox.com/asset/?id="..decalID
Three.Texture = "http://www.roblox.com/asset/?id="..decalID
Four.Texture = "http://www.roblox.com/asset/?id="..decalID
Five.Texture = "http://www.roblox.com/asset/?id="..decalID
Six.Texture = "http://www.roblox.com/asset/?id="..decalID
One.Face = "Front"
Two.Face = "Back"
Three.Face = "Right"
Four.Face = "Left"
Five.Face = "Top"
Six.Face = "Bottom"
end
exPro(v)
end
end
function asdf(root)
for _, v in pairs(root:GetChildren()) do
asdf(v)
end
end
exPro(game.Workspace)
asdf(game.Workspace)
end)

idk2.Parent = Frame
idk2.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk2.Position = UDim2.new(0.34, 0, 0.4, 0)
idk2.Size = UDim2.new(0, 94, 0, 35)
idk2.Font = Enum.Font.Cartoon
idk2.Text = "logo particle"
idk2.TextColor3 = Color3.fromRGB(0, 0, 0)
idk2.TextSize = 20.00
idk2.MouseButton1Down:connect(function()
for i, v in pairs(game.Players:GetChildren()) do
local emit = Instance.new("ParticleEmitter")
emit.Parent = v.Character.Head
emit.Texture = "http://www.roblox.com/asset/?id=16887668745"
emit.VelocitySpread = 100
end
end)

idk3.Parent = Frame
idk3.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk3.Position = UDim2.new(0.34, 0, 0.2, 0)
idk3.Size = UDim2.new(0, 94, 0, 35)
idk3.Font = Enum.Font.Cartoon
idk3.Text = "hint a"
idk3.TextColor3 = Color3.fromRGB(0, 0, 0)
idk3.TextSize = 20.000
idk3.MouseButton1Down:connect(function()
local function write(text, object)
if object:IsA("Hint") then
local count = object:FindFirstChild("Count")
if count == nil then
count = Instance.new("NumberValue")
count.Parent = object
count.Name = "Count"
count.Value = count.Value + 1
else
count.Value = count.Value + 1
end
local startcount = count.Value
for i = 1, #text do
if count.Value == startcount then
local letter = string.sub(text, i, i)
object.Text = string.sub(text, 1, i)
wait(0.001)
else
break
end
end
end
end
local bro = Instance.new("Hint", workspace)
write("team k00pkid6660 join today!!!", bro)
end)

idk4.Parent = Frame
idk4.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk4.Position = UDim2.new(0.69, 0, 0.2, 0)
idk4.Size = UDim2.new(0, 94, 0, 35)
idk4.Font = Enum.Font.Cartoon
idk4.Text = "jumpscare 2"
idk4.TextColor3 = Color3.fromRGB(0, 0, 0)
idk4.TextSize = 20.000
idk4.MouseButton1Down:connect(function()
local b = Instance.new("Sky")
b.Parent = game.Lighting
b.SkyboxBk = "http://www.roblox.com/asset/?id=0"
b.SkyboxDn = "http://www.roblox.com/asset/?id=0"
b.SkyboxFt = "http://www.roblox.com/asset/?id=0"
b.SkyboxLf = "http://www.roblox.com/asset/?id=0"
b.SkyboxRt = "http://www.roblox.com/asset/?id=0"
b.SkyboxUp = "http://www.roblox.com/asset/?id=0"
local e = Instance.new("Part")
e.Parent = game.Workspace
e.Size = Vector3.new(1, 1, 1)
e.Position = Vector3.new(0, 0, 0)
local f = Instance.new("Decal")
f.Texture = "http://www.roblox.com/asset/?id=16887668745"
f.Parent = e
wait(2)
e:Destroy()
end)

idk5.Parent = Frame
idk5.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk5.Position = UDim2.new(0.69, 0, 0.4, 0)
idk5.Size = UDim2.new(0, 94, 0, 35)
idk5.Font = Enum.Font.Cartoon
idk5.Text = "jumpscare"
idk5.TextColor3 = Color3.fromRGB(0, 0, 0)
idk5.TextSize = 20.000
idk5.MouseButton1Down:connect(function()
local b = Instance.new("Sky")
b.Parent = game.Lighting
b.SkyboxBk = "http://www.roblox.com/asset/?id=0"
b.SkyboxDn = "http://www.roblox.com/asset/?id=0"
b.SkyboxFt = "http://www.roblox.com/asset/?id=0"
b.SkyboxLf = "http://www.roblox.com/asset/?id=0"
b.SkyboxRt = "http://www.roblox.com/asset/?id=0"
b.SkyboxUp = "http://www.roblox.com/asset/?id=0"
local e = Instance.new("Part")
e.Parent = game.Workspace
e.Size = Vector3.new(1, 1, 1)
e.Position = Vector3.new(0, 0, 0)
local f = Instance.new("Decal")
f.Texture = "http://www.roblox.com/asset/?id=16887668745"
f.Parent = e
wait(2)
e:Destroy()
end)

idk6.Parent = Frame
idk6.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk6.Position = UDim2.new(0.69, 0, 0.6, 0)
idk6.Size = UDim2.new(0, 94, 0, 35)
idk6.Font = Enum.Font.Cartoon
idk6.Text = "huh?"
idk6.TextColor3 = Color3.fromRGB(0, 0, 0)
idk6.TextSize = 20.000
idk6.MouseButton1Down:connect(function()
local e = Instance.new("Part")
e.Parent = game.Workspace
e.Size = Vector3.new(5, 5, 5)
e.Position = Vector3.new(0, 0, 0)
e.BrickColor = BrickColor.new("Bright red")
end)

idk7.Parent = Frame
idk7.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk7.Position = UDim2.new(0.01, 0, 0.6, 0)
idk7.Size = UDim2.new(0, 94, 0, 35)
idk7.Font = Enum.Font.Cartoon
idk7.Text = "Say stuff"
idk7.TextColor3 = Color3.fromRGB(0, 0, 0)
idk7.TextSize = 20.000
idk7.MouseButton1Down:connect(function()

game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Jo
in the team k00pkid6660!", "All")
end)

idk8.Parent = Frame
idk8.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk8.Position = UDim2.new(0.34, 0, 0.6, 0)
idk8.Size = UDim2.new(0, 94, 0, 35)
idk8.Font = Enum.Font.Cartoon
idk8.Text = "decals"
idk8.TextColor3 = Color3.fromRGB(0, 0, 0)
idk8.TextSize = 20.000
idk8.MouseButton1Down:connect(function()
local id = 16761646077
local e = Instance.new("Part", game.Workspace)
e.Size = Vector3.new(1, 1, 1)
e.Position = Vector3.new(0, 0, 0)
local d = Instance.new("Decal", e)
d.Texture = "http://www.roblox.com/asset/?id="..id
end)

idk9.Parent = Frame
idk9.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk9.Position = UDim2.new(0.01, 0, 0.8, 0)
idk9.Size = UDim2.new(0, 94, 0, 35)
idk9.Font = Enum.Font.Cartoon
idk9.Text = "Fire"
idk9.TextColor3 = Color3.fromRGB(0, 0, 0)
idk9.TextSize = 20.000
idk9.MouseButton1Down:connect(function()
local p = Instance.new("Fire", workspace)
p.Size = Vector3.new(10, 10, 10)
p.Position = Vector3.new(0, 0, 0)
end)

idk12.Parent = Frame
idk12.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk12.Position = UDim2.new(0.34, 0, 0.8, 0)
idk12.Size = UDim2.new(0, 94, 0, 35)
idk12.Font = Enum.Font.Cartoon
idk12.Text = "Jumpscare 3"
idk12.TextColor3 = Color3.fromRGB(0, 0, 0)
idk12.TextSize = 20.000
idk12.MouseButton1Down:connect(function()
local e = Instance.new("Part")
e.Parent = game.Workspace
e.Size = Vector3.new(1, 1, 1)
e.Position = Vector3.new(0, 0, 0)
local f = Instance.new("Decal")
f.Texture = "http://www.roblox.com/asset/?id=16887668745"
f.Parent = e
wait(2)
e:Destroy()
end)

idk13.Parent = Frame
idk13.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk13.Position = UDim2.new(0.69, 0, 0.8, 0)
idk13.Size = UDim2.new(0, 94, 0, 35)
idk13.Font = Enum.Font.Cartoon
idk13.Text = "Gravity"
idk13.TextColor3 = Color3.fromRGB(0, 0, 0)
idk13.TextSize = 20.000
idk13.MouseButton1Down:connect(function()
workspace.Gravity = 10
end)

idk14.Parent = Frame
idk14.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
idk14.Position = UDim2.new(0.69, 0, 0.9, 0)
idk14.Size = UDim2.new(0, 94, 0, 35)
idk14.Font = Enum.Font.Cartoon
idk14.Text = "Reset Gravity"
idk14.TextColor3 = Color3.fromRGB(0, 0, 0)
idk14.TextSize = 20.000
idk14.MouseButton1Down:connect(function()
workspace.Gravity = 196.2
end)

close.Parent = Frame
close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
close.Position = UDim2.new(0.8, 0, 0.00832893, 0)
close.Size = UDim2.new(0, 35, 0, 35)
close.Font = Enum.Font.Cartoon
close.Text = "X"
close.TextColor3 = Color3.fromRGB(0, 0, 0)
close.TextSize = 20.000
close.MouseButton1Down:connect(function()
Frame.Visible = false
end)

You might also like