local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player.PlayerGui) gui.Name = tostring(game.PlaceId) gui.ResetOnSpawn = false game.StarterGui:SetCore("SendNotification", { Title = "Message from Zo <3"; Text = "Enjoy the script!"; Icon = "rbxassetid://17736146008"; Duration = 5; }) local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 150, 0, 275) frame.Position = UDim2.new(0.2, 0, 0, 10) frame.BackgroundColor3 = Color3.new(0.9, 0.9, 1) frame.Active = true frame.Draggable = true local button1 = Instance.new("TextButton", frame) button1.Size = UDim2.new(0, 110, 0, 50) button1.Position = UDim2.new(0.5, 0, 0, 10) button1.AnchorPoint = Vector2.new(0.5, 0) button1.BackgroundColor3 = Color3.new(1, 1, 1) button1.Text = "Collect All Money" button1.TextScaled = true button1.Font = Enum.Font.SourceSans button1.MouseButton1Click:Connect(function() local character = player.Character local oldC = character.HumanoidRootPart.CFrame for _, money in pairs(workspace.Particles:GetChildren()) do if money.Name == "Money" then local p = money:FindFirstChild("Part") if p then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p.CFrame end end wait(0.3) end character.HumanoidRootPart.CFrame = oldC character.Humanoid.PlatformStand = false end) local button2 = Instance.new("TextButton", frame) button2.Size = UDim2.new(0, 110, 0, 50) button2.Position = UDim2.new(0.5, 0, 0, 70) button2.AnchorPoint = Vector2.new(0.5, 0) button2.BackgroundColor3 = Color3.new(1, 1, 1) button2.Text = "No-clip" button2.TextScaled = true button2.Font = Enum.Font.SourceSans button2.MouseButton1Click:Connect(function() local character = player.Character for _, part in pairs(character:GetChildren()) do if part:IsA("BasePart") then part.CanCollide = false end end end) local tb = Instance.new("TextBox", frame) tb.Size = UDim2.new(0, 110, 0, 25) tb.Position = UDim2.new(0.5, 0, 0, 130) tb.AnchorPoint = Vector2.new(0.5, 0) tb.BackgroundColor3 = Color3.new(1, 1, 1) tb.Text = "16" tb.TextScaled = true tb.Font = Enum.Font.SourceSans local button3 = Instance.new("TextButton", frame) button3.Size = UDim2.new(0, 110, 0, 25) button3.Position = UDim2.new(0.5, 0, 0, 160) button3.AnchorPoint = Vector2.new(0.5, 0) button3.BackgroundColor3 = Color3.new(1, 1, 1) button3.Text = "Change WalkSpeed" button3.TextScaled = true button3.Font = Enum.Font.SourceSans button3.MouseButton1Click:Connect(function() local character = player.Character local num = tonumber(tb.Text) or 16 character.Humanoid.WalkSpeed = num end) local button31 = Instance.new("TextButton", frame) button31.Size = UDim2.new(0, 110, 0, 25) button31.Position = UDim2.new(0.5, 0, 0, 190) button31.AnchorPoint = Vector2.new(0.5, 0) button31.BackgroundColor3 = Color3.new(1, 1, 1) button31.Text = "Change JumpPower" button31.TextScaled = true button31.Font = Enum.Font.SourceSans button31.MouseButton1Click:Connect(function() local character = player.Character local num = tonumber(tb.Text) or 50 character.Humanoid.UseJumpPower = true character.Humanoid.JumpPower = num end) local button4 = Instance.new("TextButton", frame) button4.Size = UDim2.new(0, 110, 0, 25) button4.Position = UDim2.new(0.5, 0, 0, 240) button4.AnchorPoint = Vector2.new(0.5, 0) button4.Text = "Buy Shotgun" button4.TextColor3 = Color3.new(1, 1, 1) button4.TextScaled = true button4.Font = Enum.Font.SourceSans button4.MouseButton1Click:Connect(function() local character = player.Character local oldC = character.HumanoidRootPart.CFrame character.HumanoidRootPart.CFrame = CFrame.new(-101, 4, 114) wait(0.1) character.HumanoidRootPart.CFrame = oldC end) local r = 0 local function makergb(operator, val) return math.floor(128 + operator(val) * 128) end while gui do button4.BackgroundColor3 = Color3.fromRGB(makergb(math.sin, r), makergb(math.sin, r / 3), makergb(math.cos, r)) r += 0.1 wait() end