Back to Scripts
t33pgui pocket

t33pgui pocket

ScriptBlox
Universal Free

Game: Universal Script 📌

179 Views
0 Likes
0 Dislikes
t33pkidd

t33pkidd

offline

Features

fine skids go ahead

Script Code

-- Monstrum's Gui to Lua\n-- Version: 3.2

-- Instances:

local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local TextButton = Instance.new("TextButton")
local TextButton_2 = Instance.new("TextButton")
local TextButton_3 = Instance.new("TextButton")
local TextButton_4 = Instance.new("TextButton")
local TextButton_5 = Instance.new("TextButton")
local TextButton_6 = Instance.new("TextButton")

--Properties:

ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling

Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame.BorderSizePixel = 0
Frame.Position = UDim2.new(0.162381589, 0, 0.121866293, 0)
Frame.Size = UDim2.new(0, 467, 0, 290)

TextLabel.Parent = Frame
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.BorderSizePixel = 0
TextLabel.Size = UDim2.new(0, 467, 0, 50)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.Text = "t33pgui pocket edition by t33pkidd"
TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.TextSize = 40.000

TextButton.Parent = Frame
TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton.BorderSizePixel = 0
TextButton.Position = UDim2.new(0, 0, 0.172413796, 0)
TextButton.Size = UDim2.new(0, 177, 0, 50)
TextButton.Font = Enum.Font.SourceSans
TextButton.Text = "Sky"
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton.TextSize = 45.000

TextButton_2.Parent = Frame
TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_2.BorderSizePixel = 0
TextButton_2.Position = UDim2.new(0.503211975, 0, 0.172413796, 0)
TextButton_2.Size = UDim2.new(0, 177, 0, 50)
TextButton_2.Font = Enum.Font.SourceSans
TextButton_2.Text = "Decal"
TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_2.TextSize = 45.000

TextButton_3.Parent = Frame
TextButton_3.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_3.BorderSizePixel = 0
TextButton_3.Position = UDim2.new(0, 0, 0.441379309, 0)
TextButton_3.Size = UDim2.new(0, 177, 0, 50)
TextButton_3.Font = Enum.Font.SourceSans
TextButton_3.Text = "Hint"
TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_3.TextSize = 45.000

TextButton_4.Parent = Frame
TextButton_4.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
TextButton_4.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_4.BorderSizePixel = 0
TextButton_4.Position = UDim2.new(0.503211975, 0, 0.441379309, 0)
TextButton_4.Size = UDim2.new(0, 177, 0, 50)
TextButton_4.Font = Enum.Font.SourceSans
TextButton_4.Text = "Message"
TextButton_4.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_4.TextSize = 45.000

TextButton_5.Parent = Frame
TextButton_5.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
TextButton_5.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_5.BorderSizePixel = 0
TextButton_5.Position = UDim2.new(0, 0, 0.734482765, 0)
TextButton_5.Size = UDim2.new(0, 177, 0, 50)
TextButton_5.Font = Enum.Font.SourceSans
TextButton_5.Text = "Music"
TextButton_5.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_5.TextSize = 45.000

TextButton_6.Parent = Frame
TextButton_6.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
TextButton_6.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_6.BorderSizePixel = 0
TextButton_6.Position = UDim2.new(0.503211975, 0, 0.734482765, 0)
TextButton_6.Size = UDim2.new(0, 177, 0, 50)
TextButton_6.Font = Enum.Font.SourceSans
TextButton_6.Text = "Unanchor"
TextButton_6.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_6.TextSize = 45.000

-- Scripts:

local function UVGERJC_script() -- TextButton.LocalScript 
	local script = Instance.new('LocalScript', TextButton)

	local skybutton = script.Parent
	
	skybutton.MouseButton1Down:Connect(function()
		local skybox = Instance.new("Sky")
		skybox.Parent = game.Lighting
		skybox.Name = "skybox"
	
		-- Use a REAL, valid skybox asset ID (example: a known Roblox sky)
		local assetId = "rbxassetid://121270567698502"  -- Example: "Milky Way" skybox
	
		skybox.SkyboxBk = assetId
		skybox.SkyboxFt = assetId
		skybox.SkyboxDn = assetId
		skybox.SkyboxLf = assetId
		skybox.SkyboxRt = assetId
		skybox.SkyboxUp = assetId
	end)
end
coroutine.wrap(UVGERJC_script)()
local function OYLTCR_script() -- TextButton_2.LocalScript 
	local script = Instance.new('LocalScript', TextButton_2)

	local decalbutton = script.Parent
	
	decalbutton.MouseButton1Down:Connect(function()
		-- Use a VALID decal ID (replace this!)
		local ID = "rbxassetid://121270567698502"  -- Example: a real decal
	
		-- Function to apply decals to a part
		local function applyDecalsToPart(part)
			if not part:IsA("BasePart") then return end
	
			-- Define faces and their names
			local faces = {
				Front = Enum.NormalId.Front,
				Back  = Enum.NormalId.Back,
				Top   = Enum.NormalId.Top,
				Bottom = Enum.NormalId.Bottom,
				Left  = Enum.NormalId.Left,
				Right = Enum.NormalId.Right,
			}
	
			for faceName, normalId in pairs(faces) do
				-- Remove old decal on this face
				for _, child in pairs(part:GetChildren()) do
					if child:IsA("Decal") and child.Face == normalId then
						child:Destroy()
					end
				end
	
				-- Create new decal
				local decal = Instance.new("Decal")
				decal.Texture = ID
				decal.Face = normalId
				decal.Parent = part
			end
		end
	
		-- Get ALL parts in Workspace (including inside Models, Terrain, etc.)
		for _, obj in pairs(game.Workspace:GetDescendants()) do
			if obj:IsA("BasePart") then
				applyDecalsToPart(obj)
			end
		end
	
		print("Decals applied to all parts!")
	end)
end
coroutine.wrap(OYLTCR_script)()
local function RHGDT_script() -- TextButton_3.LocalScript 
	local script = Instance.new('LocalScript', TextButton_3)

	local hintbutton = script.Parent
	hintbutton.MouseButton1Down:Connect(function()
		local hint = Instance.new("Hint", game.Workspace)
		hint.Name = "hint"
		hint.Text = "REKT BY T33PKIDD"
	end)
end
coroutine.wrap(RHGDT_script)()
local function IFLJ_script() -- TextButton_4.LocalScript 
	local script = Instance.new('LocalScript', TextButton_4)

	local messagebutton = script.Parent
	messagebutton.MouseButton1Down:Connect(function()
		local message = Instance.new("Message")
		message.Parent = game.Workspace
		message.Text = "get destroyed by team t33pkidd xD"
		wait(5)
		message:Destroy()
	end)
end
coroutine.wrap(IFLJ_script)()
local function VKKLUJD_script() -- TextButton_5.LocalScript 
	local script = Instance.new('LocalScript', TextButton_5)

	local musikbutton = script.Parent
	musikbutton.MouseButton1Down:Connect(function()
		local sound = Instance.new("Sound", game.Workspace)
		sound.Name = "sound"
		sound.Looped = true
		sound.Volume = 100000000000000000000000
		sound.Looped = true
		sound.SoundId = "rbxassetid://86412047196482"
		sound:Play()
	end)
end
coroutine.wrap(VKKLUJD_script)()
local function KXQRJ_script() -- TextButton_6.LocalScript 
	local script = Instance.new('LocalScript', TextButton_6)

	local unanchorbasepartsbutton = script.Parent
	unanchorbasepartsbutton.MouseButton1Down:Connect(function()
		for _, part in pairs(workspace:GetDescendants()) do
			if part:IsA("BasePart") then
				part.Anchored = false
			end
		end
	end)
end
coroutine.wrap(KXQRJ_script)()
local function QWJTWJS_script() -- Frame.LocalScript 
	local script = Instance.new('LocalScript', Frame)

	local mainframe = script.Parent
	mainframe.Active = true
	mainframe.Draggable = true
end
coroutine.wrap(QWJTWJS_script)()

Ratings & Reviews

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

Comments (0)

Please login to comment

Login with Discord

Loading comments...