Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Locals
- local select = Instance.new("SelectionBox")
- local plr = game:GetService("Players").LocalPlayer
- local player = plr.Character
- local right = player:FindFirstChild("Right Leg")
- local rclone = right:Clone()
- local left = player:FindFirstChild("Left Leg")
- local lclone = left:Clone()
- local larm = player:FindFirstChild("Left Arm")
- local head = player:FindFirstChild("Head")
- local foil = player:FindFirstChild("Foil")
- -- Floating Platform
- local part = Instance.new("Part")
- local hum = player:findFirstChild("Humanoid")
- local platform = workspace:findFirstChild("Platform")
- if platform then
- hum.Torso.CFrame = CFrame.new(-19.277, 17, 108.053)
- else
- part.Parent = workspace
- part.Size = Vector3.new(9,1,9)
- part.Position = Vector3.new(-19.5, 12, 108.5)
- part.Anchored = true
- part.Transparency = 1
- part.Name = "Platform"
- hum.Torso.CFrame = CFrame.new(-19.277, 17, 108.053)
- end
- -- Sword Changes
- foil.Handle.Massless = true
- foil.Handle.Size = Vector3.new(27, 27, 27)
- select.Adornee = foil.Handle
- select.Color3 = Color3.new(1,0,0)
- select.Parent = foil.Handle
- -- Humanoid Changes
- rclone.Parent = game.Lighting lclone.Parent = game.Lighting
- left:Destroy() right:Destroy() larm:Destroy()
- head.face:Destroy()
- local left2 = game.Lighting:FindFirstChild("Left Leg")
- local right2 = game.Lighting:FindFirstChild("Right Leg")
- left2.Parent = player right2.Parent = player
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement