Advertisement
_Thanh_Thy_Cute_

Project Star FRAME PEOPLE GET THEM BANNED

Sep 21st, 2021
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. --This is just a simple script, the morph script isn’t mine I forgot the person who made it sorry but basically you just get a alt and your main then make the alt exploit and input the alts name along with the userid of the person your trying to frame and then record it then send it to their support channel.
  2. --You honestly don’t even need the morph part because some scripts make them go underground so only their names are visible and for the alt make sure the head is the same as the one the person you want to frame is using.
  3. local altname = "cirrws" -- name of your alt
  4. local framed = 427348404 -- user id of person you want to frame
  5.  
  6. local function morph()
  7. local appearance = game.Players:GetCharacterAppearanceAsync(framed)
  8. local player = game.Players:FindFirstChild(altname)
  9.  
  10. for i,v in pairs(player.Character:GetChildren()) do
  11. if v:IsA("Accessory") or v:IsA("Shirt") or v:IsA("Pants") or v:IsA("CharacterMesh") or v:IsA("BodyColors") then
  12. v:Destroy()
  13. end
  14. end
  15.  
  16. if player.Character.Head:FindFirstChild("face") then
  17. player.Character.Head.face:Destroy()
  18. end
  19.  
  20. for i,v in pairs(appearance:GetChildren()) do
  21. if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("BodyColors") then
  22. v.Parent = player.Character
  23. elseif v:IsA("Accessory") then
  24. player.Character.Humanoid:AddAccessory(v)
  25. local weld = Instance.new("Weld")
  26. weld.Name = "AccessoryWeld"
  27. weld.Part0 = v.Handle
  28. weld.Part1 = player.Character.Head
  29. weld.Parent = v.Handle
  30. elseif v.Name == "R6" then
  31. if player.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  32. v:FindFirstChildOfClass("CharacterMesh").Parent = player.Character
  33. end
  34. elseif v.Name == "R15" then
  35. if player.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  36. v:FindFirstChildOfClass("CharacterMesh").Parent = player.Character
  37. end
  38. end
  39. end
  40.  
  41. if appearance:FindFirstChild("face") then
  42. appearance.face.Parent = player.Character.Head
  43. else
  44. local face = Instance.new("Decal")
  45. face.Face = "Front"
  46. face.Name = "face"
  47. face.Texture = "rbxasset://textures/face.png"
  48. face.Transparency = 0
  49. face.Parent = player.Character.Head
  50. end
  51.  
  52. -- Reload Character
  53. local parent = player.Character.Parent
  54. player.Character.Parent = nil
  55. player.Character.Parent = parent
  56. end
  57.  
  58. morph()
  59.  
  60. local fakename = game:GetService("Workspace").Users:FindFirstChild(altname).NameOverhead.UI.Username:Clone()
  61. fakename.Name = "Fakename"
  62. fakename.Parent = game:GetService("Workspace").Users:FindFirstChild(altname).NameOverhead.UI
  63. game:GetService("Workspace").Users:FindFirstChild(altname).NameOverhead.UI.Username:Destroy()
  64. fakename.Text = game:GetService("Players"):GetNameFromUserIdAsync(framed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement