local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Parent = player:WaitForChild("PlayerGui") gui.ResetOnSpawn = false -------------------------------------------------- -- FRAME (DRAGGABLE) -------------------------------------------------- local frame = Instance.new("Frame") frame.Parent = gui frame.Size = UDim2.new(0, 350, 0, 250) frame.Position = UDim2.new(0.5, -175, 0.5, -125) frame.BackgroundColor3 = Color3.fromRGB(0,0,0) frame.Active = true frame.Draggable = true -------------------------------------------------- -- TITLE -------------------------------------------------- local title = Instance.new("TextLabel") title.Parent = frame title.Size = UDim2.new(1,0,0,40) title.Text = "wx00lkid" title.TextScaled = true title.BackgroundTransparency = 1 title.TextColor3 = Color3.new(1,1,1) -------------------------------------------------- -- SUB TITLE -------------------------------------------------- local sub = Instance.new("TextLabel") sub.Parent = frame sub.Size = UDim2.new(1,0,0,25) sub.Position = UDim2.new(0,0,0,40) sub.Text = "wx00lkid GUI v2" sub.TextScaled = true sub.BackgroundTransparency = 1 sub.TextColor3 = Color3.new(1,1,1) -------------------------------------------------- -- BUTTON MAKER -------------------------------------------------- local function makeButton(text, yPos) local btn = Instance.new("TextButton") btn.Parent = frame btn.Size = UDim2.new(0, 250, 0, 40) btn.Position = UDim2.new(0.5, -125, 0, yPos) btn.Text = text btn.TextScaled = true btn.BackgroundColor3 = Color3.fromRGB(0,170,255) btn.TextColor3 = Color3.new(1,1,1) return btn end -------------------------------------------------- -- BUTTONS -------------------------------------------------- local jumpscareBtn = makeButton("JUMPSCARE", 80) local skyBtn = makeButton("SKYBOX", 130) local particleBtn = makeButton("PARTICLES", 180) -------------------------------------------------- -- RAINBOW EFFECT -------------------------------------------------- task.spawn(function() while true do frame.BackgroundColor3 = Color3.fromHSV(tick()%5/5,1,1) wait(0.1) end end) -------------------------------------------------- -- JUMPSCARE (8 SECONDS) -------------------------------------------------- jumpscareBtn.MouseButton1Click:Connect(function() local img = Instance.new("ImageLabel") img.Parent = gui img.Size = UDim2.new(1,0,1,0) img.BackgroundTransparency = 1 img.Image = "rbxassetid://78002319314487" task.wait(8) -- مدة 8 ثواني img:Destroy() end) -------------------------------------------------- -- SKYBOX (NEW ID) -------------------------------------------------- skyBtn.MouseButton1Click:Connect(function() local sky = Instance.new("Sky") sky.Parent = game.Lighting local id = "rbxassetid://78002319314487" sky.SkyboxBk = id sky.SkyboxDn = id sky.SkyboxFt = id sky.SkyboxLf = id sky.SkyboxRt = id sky.SkyboxUp = id end) -------------------------------------------------- -- PARTICLES (NEW ID) -------------------------------------------------- particleBtn.MouseButton1Click:Connect(function() local char = player.Character or player.CharacterAdded:Wait() local root = char:WaitForChild("HumanoidRootPart") local p = Instance.new("ParticleEmitter") p.Parent = root p.Texture = "rbxassetid://78002319314487" p.Rate = 200 p.Lifetime = NumberRange.new(1,2) p.Speed = NumberRange.new(5,10) end)