Skip to content

Instantly share code, notes, and snippets.

@dark-modz
dark-modz / funnyPpScript.txt
Created January 14, 2023 21:29
Very funny roblox FE script
-- https://youtube.com/@dark_modz
-- (i fixed the PP script Mr Darkmodz yes sir)
for i,v in next, game:GetService("Players").LocalPlayer.Character:GetDescendants() do
if v:IsA("BasePart") and v.Name ~="HumanoidRootPart" then
game:GetService("RunService").Heartbeat:connect(function()
v.Velocity = Vector3.new(0,35,0)
wait(0.5)
end)
end
end