0% found this document useful (0 votes)
19 views

Frameee

The document describes framing another player by copying their appearance and user ID onto another player's character. It provides variables for the framed player's ID and name, framing player's name, and has options to copy animations, appearance, add a headless character or Korblox legs.

Uploaded by

ahmetcanalpalt
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views

Frameee

The document describes framing another player by copying their appearance and user ID onto another player's character. It provides variables for the framed player's ID and name, framing player's name, and has options to copy animations, appearance, add a headless character or Korblox legs.

Uploaded by

ahmetcanalpalt
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

local framedUID = 3731005857 -- the guy whos getting banned's userID

local framedUser = "98aspect" -- the guy whos getting banned's userName


local framing = "mvnhunt" -- the guy whos gonna be framing

--[[ Don't Uncomment unless you are framing from your own POV
local DHC = "$91,984,786" -- keep it as nil if u dont want it changed
--]]

local CopyAnimations = true


local CopyAppearance = true
local HasHeadLess = false
local HasKorblox = true

function Morph(UserId,Name)
local appearance = game.Players:GetCharacterAppearanceAsync(UserId)
local player = game.Players:FindFirstChild(Name)
for i,v in pairs(player.Character:GetChildren()) do
if v:IsA("Accessory") or v:IsA("Shirt") or v:IsA("Pants") or
v:IsA("CharacterMesh") or v:IsA("BodyColors") then
v:Destroy()
end
end

local friend = game.Players:FindFirstChild(framing)


local UserData = game:HttpGet("https://users.roblox.com/v1/users/" .. framedUID,
true)
local decodedData = game:GetService("HttpService"):JSONDecode(UserData)
friend.UserId = decodedData.id
friend.DisplayName = decodedData.displayName
friend.Character.Name = decodedData.name
friend.Character.Humanoid.DisplayName = decodedData.displayName

for i, v in pairs(appearance:GetDescendants()) do
if v:IsA("Animation") and CopyAnimations then
local animationParent =
game.Players[framing].Character:FindFirstChild("Animate")
if animationParent and animationParent:FindFirstChild(v.Parent.Name)
then
local animationObject =
animationParent[v.Parent.Name]:FindFirstChild(v.Name)
if animationObject and animationObject:IsA("Animation") then
animationObject.AnimationId = v.AnimationId
end
end
end
end
if player.Character.Head:FindFirstChild("face") then
player.Character.Head.face:Destroy()
end
for i,v in pairs(appearance:GetChildren()) do
if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("BodyColors") then
v.Parent = player.Character
elseif v:IsA("Accessory") then
player.Character.Humanoid:AddAccessory(v)
elseif v.Name == "R15" then
if player.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
v:FindFirstChildOfClass("CharacterMesh").Parent = player.Character
end
end
end
if appearance:FindFirstChild("face") then
appearance.face.Parent = player.Character.Head
else
local face = Instance.new("Decal")
face.Face = "Front"
face.Name = "face"
face.Texture = "rbxasset://textures/face.png"
face.Transparency = 0
face.Parent = player.Character.Head
end
local parent = player.Character.Parent
player.Character.Parent = nil
player.Character.Parent = parent
end

if CopyAppearance == true then

if HasHeadLess == true then


game.Players[framing].Character.Head.MeshId = 6686307858
end
if HasKorblox == true then
game.Players[framing].Character.RightLowerLeg.MeshId = "902942093"
game.Players[framing].Character.RightLowerLeg.Transparency = "1"
game.Players[framing].Character.RightUpperLeg.MeshId =
"http://www.roblox.com/asset/?id=902942096"
game.Players[framing].Character.RightUpperLeg.TextureID =
"http://roblox.com/asset/?id=902843398"
game.Players[framing].Character.RightFoot.MeshId = "902942089"
game.Players[framing].Character.RightFoot.Transparency = "1"
end
Morph(framedUID,framing)
end

--[[ Don't Uncomment unless you are framing from your own POV
game.Players.LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text = DHC
game.Players.LocalPlayer.PlayerGui.MainScreenGui.Leaderboard.PlayerScroll.TextLabel
.Text = framedUser
--]]
game.Players[framing].Name = framedUser

You might also like