--- dont skid lol local player = game.Players.LocalPlayer local replicatedStorage = game:GetService("ReplicatedStorage") local name = Instance.new("ScreenGui") name.Name = "heri" name.Parent = player:WaitForChild("PlayerGui") name.ResetOnSpawn = false -- Making it true will make u lose the gui after dying or respawning name.IgnoreGuiInset = false -- Can be deleted local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 467, 0, 347) --- Can be changed mainFrame.Position = UDim2.new(0.5, -300, 0.5, -225) -- Can be changed mainFrame.BackgroundColor3 = Color3.new(1, 0, 0) mainFrame.BorderSizePixel = 0 -- The outline mainFrame.BorderColor3 = Color3.new(0, 0, 0) -- Change to color of your choice mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = name local img = Instance.new("ImageLabel") img.Size = UDim2.new(0, 454, 0, 332) -- width = 454, height = 332 img.AnchorPoint = Vector2.new(0.5, 0.5) -- titik pusat img.Position = UDim2.new(0.5, 0, 0.5, 0) -- selalu center di parent (mainFrame) img.BackgroundTransparency = 1 img.Image = "rbxassetid://84152632758260" -- ganti asset id lo img.ScaleType = Enum.ScaleType.Fit img.Parent = mainFrame local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0, 0, 0, 0) -- {0,0},{0,0} alias kiri atas f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "get btools lol!" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";btools") -- U can change all of it with your commands! RequestCommand:InvokeServer(";buildingTools") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0, 0, 0.268, 0) -- {0,0},{0.268,0} f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "USSR" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 24 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";music 109261572535017") -- U can change all of it with your commands! RequestCommand:InvokeServer(";pitch 0.107") RequestCommand:InvokeServer(";volume inf") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0, 0, 0.78, 0) -- {0,0},{0.268,0} f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "Skybox" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 24 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local player = game.Players.LocalPlayer local char = player.Character local tool for i,v in player:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end for i,v in game.ReplicatedStorage:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end remote = tool.SyncAPI.ServerEndpoint function _(args) remote:InvokeServer(unpack(args)) end function SetCollision(part,boolean) local args = { [1] = "SyncCollision", [2] = { [1] = { ["Part"] = part, ["CanCollide"] = boolean } } } _(args) end function SetAnchor(boolean,part) local args = { [1] = "SyncAnchor", [2] = { [1] = { ["Part"] = part, ["Anchored"] = boolean } } } _(args) end function CreatePart(cf,parent) local args = { [1] = "CreatePart", [2] = "Normal", [3] = cf, [4] = parent } _(args) end function DestroyPart(part) local args = { [1] = "Remove", [2] = { [1] = part } } _(args) end function MovePart(part,cf) local args = { [1] = "SyncMove", [2] = { [1] = { ["Part"] = part, ["CFrame"] = cf } } } _(args) end function Resize(part,size,cf) local args = { [1] = "SyncResize", [2] = { [1] = { ["Part"] = part, ["CFrame"] = cf, ["Size"] = size } } } _(args) end function AddMesh(part) local args = { [1] = "CreateMeshes", [2] = { [1] = { ["Part"] = part } } } _(args) end function SetMesh(part,meshid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["MeshId"] = "rbxassetid://"..meshid } } } _(args) end function SetTexture(part, texid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["TextureId"] = "rbxassetid://"..texid } } } _(args) end function SetName(part, stringg) local args = { [1] = "SetName", [2] = { [1] = part }, [3] = stringg } _(args) end function MeshResize(part,size) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["Scale"] = size } } } _(args) end function Weld(part1, part2,lead) local args = { [1] = "CreateWelds", [2] = { [1] = part1, [2] = part2 }, [3] = lead } _(args) end function SetLocked(part,boolean) local args = { [1] = "SetLocked", [2] = { [1] = part }, [3] = boolean } _(args) end function SetTrans(part,int) local args = { [1] = "SyncMaterial", [2] = { [1] = { ["Part"] = part, ["Transparency"] = int } } } _(args) end function CreateSpotlight(part) local args = { [1] = "CreateLights", [2] = { [1] = { ["Part"] = part, ["LightType"] = "SpotLight" } } } _(args) end function SyncLighting(part,brightness) local args = { [1] = "SyncLighting", [2] = { [1] = { ["Part"] = part, ["LightType"] = "SpotLight", ["Brightness"] = brightness } } } _(args) end function Color(part,color) local args = { [1] = "SyncColor", [2] = { [1] = { ["Part"] = part, ["Color"] = color --[[Color3]], ["UnionColoring"] = false } } } _(args) end function SpawnDecal(part,side) local args = { [1] = "CreateTextures", [2] = { [1] = { ["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal" } } } _(args) end function AddDecal(part,asset,side) local args = { [1] = "SyncTexture", [2] = { [1] = { ["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal", ["Texture"] = "rbxassetid://".. asset } } } _(args) end function Sky(id) e = char.HumanoidRootPart.CFrame.x f = char.HumanoidRootPart.CFrame.y g = char.HumanoidRootPart.CFrame.z CreatePart(CFrame.new(math.floor(e),math.floor(f),math.floor(g)) + Vector3.new(0,6,0),workspace) for i,v in game.Workspace:GetDescendants() do if v:IsA("BasePart") and v.CFrame.x == math.floor(e) and v.CFrame.z == math.floor(g) then --spawn(function() SetName(v,"Skybox") AddMesh(v) --end) --spawn(function() SetMesh(v,"111891702759441") -- Dont change it SetTexture(v,id) --end) MeshResize(v,Vector3.new(7200, 7200, 7200)) -- The rest must be equal to the first scale number SetLocked(v,true) end end end Sky("84152632758260") -- Replace with your id local RunService = game:GetService("RunService") local speed = 0.5 -- kecepatan muter RunService.Heartbeat:Connect(function(dt) local sky = workspace:FindFirstChild("Skybox") if sky and sky:IsA("BasePart") then local newCF = sky.CFrame * CFrame.Angles(0, math.rad(speed), 0) MovePart(sky,newCF) end end) end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0, 0, 0.524, 0) -- {0,0},{0.268,0} f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "decal" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 24 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local player = game.Players.LocalPlayer local char = player.Character local tool for i,v in player:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end for i,v in game.ReplicatedStorage:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end remote = tool.SyncAPI.ServerEndpoint function _(args) remote:InvokeServer(unpack(args)) end function SetCollision(part,boolean) local args = { [1] = "SyncCollision", [2] = { [1] = { ["Part"] = part, ["CanCollide"] = boolean } } } _(args) end function SetAnchor(boolean,part) local args = { [1] = "SyncAnchor", [2] = { [1] = { ["Part"] = part, ["Anchored"] = boolean } } } _(args) end function CreatePart(cf,parent) local args = { [1] = "CreatePart", [2] = "Normal", [3] = cf, [4] = parent } _(args) end function DestroyPart(part) local args = { [1] = "Remove", [2] = { [1] = part } } _(args) end function MovePart(part,cf) local args = { [1] = "SyncMove", [2] = { [1] = { ["Part"] = part, ["CFrame"] = cf } } } _(args) end function Resize(part,size,cf) local args = { [1] = "SyncResize", [2] = { [1] = { ["Part"] = part, ["CFrame"] = cf, ["Size"] = size } } } _(args) end function AddMesh(part) local args = { [1] = "CreateMeshes", [2] = { [1] = { ["Part"] = part } } } _(args) end function SetMesh(part,meshid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["MeshId"] = "rbxassetid://"..meshid } } } _(args) end function SetTexture(part, texid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["TextureId"] = "rbxassetid://"..texid } } } _(args) end function SetName(part, stringg) local args = { [1] = "SetName", [2] = { [1] = part }, [3] = stringg } _(args) end function MeshResize(part,size) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["Scale"] = size } } } _(args) end function Weld(part1, part2,lead) local args = { [1] = "CreateWelds", [2] = { [1] = part1, [2] = part2 }, [3] = lead } _(args) end function SetLocked(part,boolean) local args = { [1] = "SetLocked", [2] = { [1] = part }, [3] = boolean } _(args) end function SetTrans(part,int) local args = { [1] = "SyncMaterial", [2] = { [1] = { ["Part"] = part, ["Transparency"] = int } } } _(args) end function CreateSpotlight(part) local args = { [1] = "CreateLights", [2] = { [1] = { ["Part"] = part, ["LightType"] = "SpotLight" } } } _(args) end function SyncLighting(part,brightness) local args = { [1] = "SyncLighting", [2] = { [1] = { ["Part"] = part, ["LightType"] = "SpotLight", ["Brightness"] = brightness } } } _(args) end function Color(part,color) local args = { [1] = "SyncColor", [2] = { [1] = { ["Part"] = part, ["Color"] = color --[[Color3]], ["UnionColoring"] = false } } } _(args) end function SpawnDecal(part,side) local args = { [1] = "CreateTextures", [2] = { [1] = { ["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal" } } } _(args) end function AddDecal(part,asset,side) local args = { [1] = "SyncTexture", [2] = { [1] = { ["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal", ["Texture"] = "rbxassetid://".. asset } } } _(args) end function spam(id) for i,v in game.workspace:GetDescendants() do if v:IsA("BasePart") then spawn(function() SetLocked(v,false) SpawnDecal(v,Enum.NormalId.Front) AddDecal(v,id,Enum.NormalId.Front) SpawnDecal(v,Enum.NormalId.Back) AddDecal(v,id,Enum.NormalId.Back) SpawnDecal(v,Enum.NormalId.Right) AddDecal(v,id,Enum.NormalId.Right) SpawnDecal(v,Enum.NormalId.Left) AddDecal(v,id,Enum.NormalId.Left) SpawnDecal(v,Enum.NormalId.Bottom) AddDecal(v,id,Enum.NormalId.Bottom) SpawnDecal(v,Enum.NormalId.Top) AddDecal(v,id,Enum.NormalId.Top) end) end end end spam("100330332336974") -- Replace with your decal ID end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.366, 0, 0.524, 0) f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "this is sparta" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";music 140240856766854") -- U can change all of it with your commands! RequestCommand:InvokeServer(";pitch 0.2") RequestCommand:InvokeServer(";volume inf") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.366, 0, 0.801, 0) f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "nein" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";music 83682008343882") -- U can change all of it with your commands! RequestCommand:InvokeServer(";pitch 0.1") RequestCommand:InvokeServer(";volume inf") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.366, 0, 0.268, 0) f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "china" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";music 121922837560201") -- U can change all of it with your commands! RequestCommand:InvokeServer(";pitch 0.22") RequestCommand:InvokeServer(";volume inf") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.366, 0, 0, 0) f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "lotsa" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";music 99907604701668") -- U can change all of it with your commands! RequestCommand:InvokeServer(";pitch 0.13") RequestCommand:InvokeServer(";volume inf") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.707, 0, 0, 0) -- posisi {0.707, 0},{0, 0} f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "scatman" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";music 73056619288510") -- U can change all of it with your commands! RequestCommand:InvokeServer(";pitch 0.166") RequestCommand:InvokeServer(";volume inf") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.707, 0, 0.268, 0) -- posisi sesuai kamu f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "disco and fog" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";disco") -- U can change all of it with your commands! RequestCommand:InvokeServer(";fog") RequestCommand:InvokeServer(";fogcolor black") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.707, 0, 0.524, 0) -- 🔹 posisi baru di sini f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "sm" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";sm 1nd0exploiters9x25 on top dawg🤑") end) local f3x = Instance.new("TextButton") f3x.Size = UDim2.new(0, 121, 0, 50) -- ukuran tombol f3x.Position = UDim2.new(0.707, 0, 0.801, 0) f3x.BackgroundColor3 = Color3.fromRGB(255, 255, 255) f3x.BorderSizePixel = 0 f3x.BorderColor3 = Color3.fromRGB(0, 0, 0) f3x.Font = Enum.Font.Cartoon f3x.Text = "insert dog" f3x.TextColor3 = Color3.new(1, 0, 0) f3x.TextSize = 19 f3x.Parent = img f3x.MouseButton1Click:Connect(function() -- Replace with your instance name local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand RequestCommand:InvokeServer(";insert 257489726") -- U can change all of it with your commands! end)