Advertisement
RammyXO

Untitled

Sep 16th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. -- Locals
  2. local select = Instance.new("SelectionBox")
  3. local plr = game:GetService("Players").LocalPlayer
  4. local player = plr.Character
  5. local right = player:FindFirstChild("Right Leg")
  6. local rclone = right:Clone()
  7. local left = player:FindFirstChild("Left Leg")
  8. local lclone = left:Clone()
  9. local larm = player:FindFirstChild("Left Arm")
  10. local head = player:FindFirstChild("Head")
  11. local foil = player:FindFirstChild("Foil")
  12.  
  13. -- Floating Platform
  14. local part = Instance.new("Part")
  15. local hum = player:findFirstChild("Humanoid")
  16. local platform = workspace:findFirstChild("Platform")
  17.  
  18. if platform then
  19. hum.Torso.CFrame = CFrame.new(-19.277, 17, 108.053)
  20. else
  21. part.Parent = workspace
  22. part.Size = Vector3.new(9,1,9)
  23. part.Position = Vector3.new(-19.5, 12, 108.5)
  24. part.Anchored = true
  25. part.Transparency = 1
  26. part.Name = "Platform"
  27. hum.Torso.CFrame = CFrame.new(-19.277, 17, 108.053)
  28. end
  29.  
  30. -- Sword Changes
  31. foil.Handle.Massless = true
  32. foil.Handle.Size = Vector3.new(27, 27, 27)
  33. select.Adornee = foil.Handle
  34. select.Color3 = Color3.new(1,0,0)
  35. select.Parent = foil.Handle
  36.  
  37. -- Humanoid Changes
  38. rclone.Parent = game.Lighting lclone.Parent = game.Lighting
  39. left:Destroy() right:Destroy() larm:Destroy()
  40. head.face:Destroy()
  41.  
  42. local left2 = game.Lighting:FindFirstChild("Left Leg")
  43. local right2 = game.Lighting:FindFirstChild("Right Leg")
  44. left2.Parent = player right2.Parent = player
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement