$$$$$$$\ $$\ $$\ $$\ $$\ $$\ $$$$$$$\ $$\ $$\ $$$$$$$\ $$$$$$$$\ $$ __$$\ $$ | $$ | $$ |$$ | $$ |$$ __$$\ $$ | $$ |$$ __$$\ $$ _____| $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$$$$$$\ |$$ | $$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$$$$\ $$ __$$\ $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ __| $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$$$$$$ |$$$$$$$$\\$$$$$$ |\$$$$$$ |$$$$$$$ |\$$$$$$ |$$$$$$$ |$$$$$$$$\ \_______/ \________|\______/ \______/ \_______/ \______/ \_______/ \________/ -- Gui to Lua -- Version: 3.2 -- Instances: local bluugui = Instance.new("ScreenGui") local ScrollingFrame = Instance.new("ScrollingFrame") local music = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") local skybox = Instance.new("TextButton") local jumpscare = Instance.new("TextButton") local gametage = Instance.new("TextButton") local itsmeeee = Instance.new("TextButton") --Properties: bluugui.Name = "bluugui" bluugui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") bluugui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScrollingFrame.Parent = bluugui ScrollingFrame.Active = true ScrollingFrame.BackgroundColor3 = Color3.fromRGB(7, 7, 7) ScrollingFrame.BorderColor3 = Color3.fromRGB(97, 221, 249) ScrollingFrame.BorderSizePixel = 7 ScrollingFrame.Position = UDim2.new(0.0419083014, 0, 0.120498955, 0) ScrollingFrame.Size = UDim2.new(0, 400, 0, 106) ScrollingFrame.CanvasPosition = Vector2.new(0, 4.75733566) music.Name = "music" music.Parent = bluugui music.BackgroundColor3 = Color3.fromRGB(0, 0, 0) music.BorderColor3 = Color3.fromRGB(135, 227, 255) music.BorderSizePixel = 3 music.Position = UDim2.new(0.0431338027, 0, 0.136677295, 0) music.Size = UDim2.new(0, 152, 0, 43) music.Font = Enum.Font.FredokaOne music.Text = "music" music.TextColor3 = Color3.fromRGB(0, 255, 225) music.TextSize = 14.000 TextLabel.Parent = game.StarterGui.bluugui.music.LocalScript TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.164215684, 0, 0.038961038, 0) TextLabel.Size = UDim2.new(0, 200, 0, 50) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "bluugui😼 v2" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 14.000 skybox.Name = "skybox" skybox.Parent = music skybox.BackgroundColor3 = Color3.fromRGB(0, 0, 0) skybox.BorderColor3 = Color3.fromRGB(135, 227, 255) skybox.BorderSizePixel = 3 skybox.Position = UDim2.new(1.08260763, 0, -0.00285782921, 0) skybox.Size = UDim2.new(0, 152, 0, 43) skybox.Font = Enum.Font.FredokaOne skybox.Text = "skybox" skybox.TextColor3 = Color3.fromRGB(0, 255, 225) skybox.TextSize = 14.000 jumpscare.Name = "jumpscare" jumpscare.Parent = music jumpscare.BackgroundColor3 = Color3.fromRGB(0, 0, 0) jumpscare.BorderColor3 = Color3.fromRGB(135, 227, 255) jumpscare.BorderSizePixel = 3 jumpscare.Position = UDim2.new(2.13523936, 0, -0.00285782921, 0) jumpscare.Size = UDim2.new(0, 75, 0, 43) jumpscare.Font = Enum.Font.FredokaOne jumpscare.Text = "jumpscare" jumpscare.TextColor3 = Color3.fromRGB(0, 255, 225) jumpscare.TextSize = 14.000 gametage.Name = "gametage" gametage.Parent = bluugui gametage.BackgroundColor3 = Color3.fromRGB(6, 6, 6) gametage.BorderColor3 = Color3.fromRGB(137, 224, 255) gametage.BorderSizePixel = 5 gametage.Position = UDim2.new(0.042892158, 0, 0.209790215, 0) gametage.Size = UDim2.new(0, 152, 0, 39) gametage.Font = Enum.Font.FredokaOne gametage.Text = "nametag" gametage.TextColor3 = Color3.fromRGB(34, 254, 210) gametage.TextSize = 14.000 itsmeeee.Name = "its meeee" itsmeeee.Parent = bluugui itsmeeee.BackgroundColor3 = Color3.fromRGB(255, 255, 255) itsmeeee.BorderColor3 = Color3.fromRGB(0, 0, 0) itsmeeee.BorderSizePixel = 0 itsmeeee.Position = UDim2.new(0.21446079, 0, 0.227647364, 0) itsmeeee.Size = UDim2.new(0, 152, 0, 39) itsmeeee.Font = Enum.Font.SourceSans itsmeeee.Text = "its meeeee" itsmeeee.TextColor3 = Color3.fromRGB(0, 0, 0) itsmeeee.TextSize = 14.000 -- Scripts: local function SIJDXHH_fake_script() -- music.LocalScript local script = Instance.new('LocalScript', music) local button = script.Parent -- Música button.MouseButton1Click:Connect(function() -- Procura um som existente para evitar múltiplos sons sobrepostos local gui = button.Parent local sound = gui:FindFirstChild("MusicSound") if not sound then sound = Instance.new("Sound") sound.Name = "MusicSound" sound.SoundId = "rbxassetid://131017912653289" sound.Volume = 1 sound.Looped = true sound.Parent = gui end sound:Play() end) -- Skybox local skyboxButton = button:FindFirstChild("skybox") if skyboxButton then skyboxButton.MouseButton1Click:Connect(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:FindFirstChild("ChangeSkybox") if event then event:FireServer(117296294312300) end end) end -- Jumpscare local jumpscareButton = button:FindFirstChild("jumpscare") if jumpscareButton then jumpscareButton.MouseButton1Click:Connect(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:FindFirstChild("Jumpscare") if event then event:FireServer() end end) end -- Rain local rainButton = button:FindFirstChild("rain") if rainButton then rainButton.MouseButton1Click:Connect(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:FindFirstChild("Rain") if event then event:FireServer() end end) end -- Nametag local nametagButton = button.Parent:FindFirstChild("gametage") if nametagButton then nametagButton.MouseButton1Click:Connect(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:FindFirstChild("Nametag") if event then event:FireServer() end end) end end coroutine.wrap(SIJDXHH_fake_script)() local function RRKRS_fake_script() -- itsmeeee.ItsMeButtonClient local script = Instance.new('LocalScript', itsmeeee) local button = script.Parent button.MouseButton1Click:Connect(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:FindFirstChild("ItsMe") if event then event:FireServer() end end) end coroutine.wrap(RRKRS_fake_script)()