-- shamsulrayqal08011 GUI V2.0 local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player.PlayerGui) gui.Name = "shamsulrayqal08011 GUI V2.0" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0,250,0,400) frame.Position = UDim2.new(0.1,0,0.1,0) frame.BackgroundColor3 = Color3.fromRGB(255,255,255) frame.Active = true frame.Draggable = true local layout = Instance.new("UIListLayout",frame) local function makeButton(name,callback) local b = Instance.new("TextButton",frame) b.Size = UDim2.new(1,0,0,30) b.Text = name b.BackgroundColor3 = Color3.fromRGB(0,0,0) b.TextColor3 = Color3.fromRGB(255,255,255) b.MouseButton1Click:Connect(callback) end -- DECAL SPAM makeButton("Decal Spam",function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then for i=1,6 do local d=Instance.new("Decal",v) d.Texture="rbxassetid://82266599664552" d.Face=Enum.NormalId:GetEnumItems()[i] end end end end) -- SKYBOX makeButton("Skybox",function() local sky=Instance.new("Sky",game.Lighting) sky.SkyboxBk="rbxassetid://82266599664552" sky.SkyboxDn="rbxassetid://82266599664552" sky.SkyboxFt="rbxassetid://82266599664552" sky.SkyboxLf="rbxassetid://82266599664552" sky.SkyboxRt="rbxassetid://82266599664552" sky.SkyboxUp="rbxassetid://82266599664552" end) -- PARTICLES PLAYER makeButton("Particles Player",function() local char=player.Character for _,p in pairs(char:GetDescendants()) do if p:IsA("BasePart") then local pe=Instance.new("ParticleEmitter",p) pe.Texture="rbxassetid://82266599664552" pe.Rate=100 end end end) -- DISCO MAP makeButton("Disco Map",function() while true do for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Color=Color3.new(math.random(),math.random(),math.random()) end end wait(0.5) end end) -- SPINNING MAP makeButton("Spinning Map",function() while true do for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.CFrame=v.CFrame*CFrame.Angles(0,math.rad(5),0) end end wait() end end) -- FIRE ALL makeButton("Fire All",function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then Instance.new("Fire",v) end end end) -- UNANCHOR makeButton("Unanchor",function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Anchored=false end end end) -- ANCHOR makeButton("Anchor",function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Anchored=true end end end) -- FLOOD MAP makeButton("Flood",function() local water=Instance.new("Part",workspace) water.Size=Vector3.new(1000,200,1000) water.Position=Vector3.new(0,50,0) water.Material=Enum.Material.Water water.Anchored=true end) -- MALAYSIA SPAM makeButton("Malaysia Spam",function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then for i=1,6 do local d=Instance.new("Decal",v) d.Texture="rbxassetid://8209843340" d.Face=Enum.NormalId:GetEnumItems()[i] end end end end) -- NO LIMBS makeButton("No Limbs",function() local char=player.Character for _,v in pairs(char:GetChildren()) do if v.Name:find("Arm") or v.Name:find("Leg") then v:Destroy() end end end) -- NO ARMS makeButton("No Arms",function() local char=player.Character if char:FindFirstChild("Left Arm") then char["Left Arm"]:Destroy() end if char:FindFirstChild("Right Arm") then char["Right Arm"]:Destroy() end end) -- HINTS local function hint(text) local h=Instance.new("Hint",workspace) h.Text=text wait(5) h:Destroy() end makeButton("Hint1",function() hint("W mirait0waGUI") end) makeButton("Hint2",function() hint("Shamsulrayqal08011 join now!!") end) -- MESSAGE makeButton("Message",function() local m=Instance.new("Message",workspace) m.Text="This server has hacked by Shamsul!!" wait(5) m:Destroy() end)