
Description
local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer -- IDs local ASSET_ID = "rbxassetid://112011705282839" local JUMPSCARE_IMAGE = "rbxassetid://112011705282839" local JUMPSCARE_SOUND = "rbxassetid://103215672097028" -- GUI PRINCIPAL local gui = Instance.new("ScreenGui") gui.Name = "DawnHunterGalaxyGui" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Parent = gui frame.Size = UDim2.new(0,320,0,420) frame.Position = UDim2.new(0.5,-160,0.5,-210) frame.BackgroundColor3 = Color3.fromRGB(15,15,15) frame.Active = true frame.Draggable = true -- TÍTULO local title = Instance.new("TextLabel") title.Parent = frame title.Size = UDim2.new(1,0,0,40) title.Text = "DawnHunterGalaxy gui v1" title.TextColor3 = Color3.new(1,1,1) title.BackgroundColor3 = Color3.fromRGB(0,0,0) title.BackgroundTransparency = 0.2 title.Font = Enum.Font.SourceSansBold title.TextSize = 20 -- FUNCIÓN BOTÓN local function newButton(text, y) local b = Instance.new("TextButton") b.Parent = frame b.Size = UDim2.new(0.9,0,0,40) b.Position = UDim2.new(0.05,0,0,y) b.BackgroundColor3 = Color3.fromRGB(0,0,0) b.BackgroundTransparency = 0.3 b.Text = text b.TextColor3 = Color3.new(1,1,1) b.Font = Enum.Font.SourceSansBold b.TextSize = 18 return b end -- BOTONES local skyBtn = newButton("Skybox", 60) local decalBtn = newButton("Decal Spam", 110) local particleBtn = newButton("Particles", 160) local jumpscareBtn = newButton("Jumpscare", 210) -- SKYBOX skyBtn.MouseButton1Click:Connect(function() local sky = Lighting:FindFirstChildOfClass("Sky") or Instance.new("Sky", Lighting) for _,v in pairs({"Bk","Dn","Ft","Lf","Rt","Up"}) do sky["Skybox"..v] = ASSET_ID end end) -- DECAL SPAM decalBtn.MouseButton1Click:Connect(function() for _,p in pairs(workspace:GetDescendants()) do if p:IsA("BasePart") then local d = Instance.new("Decal") d.Texture = ASSET_ID d.Parent = p end end end) -- PARTICLES particleBtn.MouseButton1Click:Connect(function() for _,plr in pairs(Players:GetPlayers()) do if plr.Character then local root = plr.Character:FindFirstChild("HumanoidRootPart") if root then local pe = Instance.new("ParticleEmitter") pe.Texture = ASSET_ID pe.Rate = 30 pe.Parent = root end end end end) -- 🔥 JUMPSCARE (IMAGEN + MÚSICA MISMO TIEMPO) jumpscareBtn.MouseButton1Click:Connect(function() local jgui = Instance.new("ScreenGui", player.PlayerGui) local img = Instance.new("ImageLabel", jgui) img.Size = UDim2.new(1,0,1,0) img.BackgroundTransparency = 1 img.Image = JUMPSCARE_IMAGE img.ZIndex = 999 local s = Instance.new("Sound", workspace) s.SoundId = JUMPSCARE_SOUND s.Volume = 10 -- MISMO FRAME img.Visible = true s:Play() task.delay(3, function() jgui:De ScriptHahaa



![[🎉 RELEASE] Anime Astral Simulator](/images/script/113236157544232-1780333729144.png)
Voxle Hub
