Skip to content

Instantly share code, notes, and snippets.

@thekaisbest
Created May 27, 2021 07:22
Show Gist options
  • Save thekaisbest/4d54da5742ddf0ec7caed82230feea6e to your computer and use it in GitHub Desktop.
Save thekaisbest/4d54da5742ddf0ec7caed82230feea6e to your computer and use it in GitHub Desktop.
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(45,0,0)
end)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment