Advertisement
TheOfficialBl423

Free headless & korblox script

Jan 18th, 2024
2,106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. local function onCharacterAdded(character)
  2. wait(1) -- Wait for the character to fully load
  3.  
  4. local rightLowerLeg = character:FindFirstChild("RightLowerLeg")
  5. if rightLowerLeg then
  6. rightLowerLeg.MeshId = "http://www.roblox.com/asset/?id=902942093"
  7. rightLowerLeg.Transparency = 1
  8. end
  9.  
  10. local rightUpperLeg = character:FindFirstChild("RightUpperLeg")
  11. if rightUpperLeg then
  12. rightUpperLeg.MeshId = "http://www.roblox.com/asset/?id=902942096"
  13. rightUpperLeg.TextureID = "http://www.roblox.com/asset/?id=902843398"
  14. end
  15.  
  16. local rightFoot = character:FindFirstChild("RightFoot")
  17. if rightFoot then
  18. rightFoot.MeshId = "http://www.roblox.com/asset/?id=902942089"
  19. rightFoot.Transparency = 1
  20. end
  21. end
  22.  
  23. game.Players.LocalPlayer.CharacterAdded:Connect(onCharacterAdded)
  24.  
  25. -- In case the character is already spawned when the script runs
  26. if game.Players.LocalPlayer.Character then
  27. onCharacterAdded(game.Players.LocalPlayer.Character)
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement