Advertisement
Guest User

Best friend

a guest
Dec 29th, 2021
1,325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. -- Hats cost(0/Free) || these are the hats for the same FE as in the video-
  2. -- Next video, will give hats to other FE in this hathub
  3.  
  4. -- https://www.roblox.com/catalog/376527115/Jade-Necklace-with-Shell-Pendant
  5. -- https://www.roblox.com/catalog/1103003368/Orange-Beanie-with-Black-Hair
  6. -- https://www.roblox.com/catalog/3992084515/International-Fedora-Vietnam
  7. -- https://www.roblox.com/catalog/48474294/ROBLOX-Girl-Hair
  8. -- https://www.roblox.com/catalog/451220849/Lavender-Updo
  9. -- https://www.roblox.com/catalog/62724852/Chestnut-Bun
  10. -- https://www.roblox.com/catalog/62234425/Brown-Hair
  11. -- https://www.roblox.com/catalog/63690008/Pal-Hair
  12.  
  13. -- key
  14. -- E -> try itself
  15. -- Y -> try itself
  16. -- U -> try itself
  17. -- F -> try itself
  18. -- G -> try itself
  19. -- H -> try itself
  20. -- J -> try itself
  21. -- K -> try itself
  22.  
  23.  
  24.  
  25.  
  26. --this script to make your hats turn into blocks
  27. local hairAccessoriesWithoutHairInName = {
  28. ['RedBeanieWithHair'] = true;
  29. ['VarietyShades10'] = true;
  30. }
  31.  
  32. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  33. if v:IsA("Accessory","LongStraightHair") and not hairAccessoriesWithoutHairInName[v.Name] and v.Handle:FindFirstChild("Mesh") then
  34. ag = v.Handle:FindFirstChild("Mesh")
  35. ag:Destroy()
  36. end
  37. end
  38.  
  39. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  40. if v:IsA("Accessory","LongStraightHair") and not hairAccessoriesWithoutHairInName[v.Name] and v.Handle:FindFirstChild("SpecialMesh") then
  41. ag = v.Handle:FindFirstChild("SpecialMesh")
  42. ag:Destroy()
  43. end
  44. end
  45.  
  46.  
  47.  
  48.  
  49. loadstring(game:HttpGet("https://paste.ee/r/bf5oO", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement