FreeRobloxScripts1

(NOT FE) Steal Player Outfit

Jun 19th, 2023 (edited)
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. -- Steal Player Outfit
  2. -- Made By Haxker_6666666
  3. -- This Script Not FE This Script Only You Can See
  4. -- This Script Sometimes Buggy To Fix Reset
  5.  
  6. -- Objects
  7. plr = game.Players.LocalPlayer
  8. StealGui = Instance.new("ScreenGui")
  9. Frame = Instance.new("Frame")
  10. TextButton = Instance.new("TextButton")
  11. TextBox = Instance.new("TextBox")
  12.  
  13. -- Properties
  14.  
  15. StealGui.Name = "StealGui"
  16. StealGui.Parent = plr.PlayerGui
  17.  
  18. Frame.Parent = StealGui
  19. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  20. Frame.Position = UDim2.new(0, 300, 0, 200)
  21. Frame.Size = UDim2.new(0, 300, 0, 150)
  22. Frame.Active = true
  23. Frame.Draggable = true
  24.  
  25. TextButton.Parent = Frame
  26. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  27. TextButton.Position = UDim2.new(0, 50, 0, 90)
  28. TextButton.Size = UDim2.new(0, 200, 0, 50)
  29. TextButton.Font = Enum.Font.SourceSans
  30. TextButton.FontSize = Enum.FontSize.Size32
  31. TextButton.Text = "Steal"
  32. TextButton.TextSize = 30
  33. TextButton.MouseButton1Down:connect(function()
  34. if TextButton.Text == "Steal" then
  35. TextButton.Text = "UnSteal"
  36. workspace[TextBox.Text].Humanoid.PlatformStand = true
  37. W1 = Instance.new("Weld",workspace)
  38. W1.Name = "Weld1"
  39. W1.Part0 = plr.Character.Torso
  40. W1.Part1 = workspace[TextBox.Text].Torso
  41. W2 = Instance.new("Weld",workspace)
  42. W2.Name = "Weld2"
  43. W2.Part0 = plr.Character.Head
  44. W2.Part1 = workspace[TextBox.Text].Head
  45. W3 = Instance.new("Weld",workspace)
  46. W3.Name = "Weld3"
  47. W3.Part0 = plr.Character.HumanoidRootPart
  48. W3.Part1 = workspace[TextBox.Text].HumanoidRootPart
  49. W4 = Instance.new("Weld",workspace)
  50. W4.Name = "Weld4"
  51. W4.Part0 = plr.Character["Left Arm"]
  52. W4.Part1 = workspace[TextBox.Text]["Left Arm"]
  53. W5 = Instance.new("Weld",workspace)
  54. W5.Name = "Weld5"
  55. W5.Part0 = plr.Character["Left Leg"]
  56. W5.Part1 = workspace[TextBox.Text]["Left Leg"]
  57. W6 = Instance.new("Weld",workspace)
  58. W6.Name = "Weld6"
  59. W6.Part0 = plr.Character["Right Arm"]
  60. W6.Part1 = workspace[TextBox.Text]["Right Arm"]
  61. W7 = Instance.new("Weld",workspace)
  62. W7.Name = "Weld7"
  63. W7.Part0 = plr.Character["Right Leg"]
  64. W7.Part1 = workspace[TextBox.Text]["Right Leg"]
  65. for i,v in pairs(plr.Character:GetChildren()) do
  66. if v.ClassName == "Part" then
  67. v.Transparency = 1
  68. end
  69. plr.Character.HumanoidRootPart.Transparency = 1
  70. if v.ClassName == "Accessory" then
  71. v.Handle.Transparency = 1
  72. end
  73. plr.Character.Humanoid.NameOcclusion = "NoOcclusion"
  74. end
  75. elseif TextButton.Text == "UnSteal" then
  76. TextButton.Text = "Steal"
  77. workspace[TextBox.Text].Humanoid.PlatformStand = false
  78. workspace.Weld1:Remove()
  79. workspace.Weld2:Remove()
  80. workspace.Weld3:Remove()
  81. workspace.Weld4:Remove()
  82. workspace.Weld5:Remove()
  83. workspace.Weld6:Remove()
  84. workspace.Weld7:Remove()
  85. for i,v in pairs(plr.Character:GetChildren()) do
  86. if v.ClassName == "Part" then
  87. v.Transparency = 0
  88. end
  89. plr.Character.HumanoidRootPart.Transparency = 1
  90. if v.ClassName == "Accessory" then
  91. v.Handle.Transparency = 0
  92. end
  93. plr.Character.Humanoid.NameOcclusion = "OccludeAll"
  94. end
  95. end
  96. end)
  97.  
  98. TextBox.Parent = Frame
  99. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  100. TextBox.Position = UDim2.new(0, 50, 0, 20)
  101. TextBox.Size = UDim2.new(0, 200, 0, 30)
  102. TextBox.Font = Enum.Font.SourceSans
  103. TextBox.FontSize = Enum.FontSize.Size28
  104. TextBox.Text = "Type Player Name Here"
  105. TextBox.TextSize = 25
  106.  
  107. game:GetService("StarterGui"):SetCore("SendNotification",{
  108. Title = "Script";
  109. Text = "Steal Player Outfit Has Been Loaded , Made By Haxker_6666666";
  110. Icon = "rbxassetid://13689518396";
  111. Duration = 10;
  112. Button1 = "Ok";
  113. })
  114.  
Advertisement
Add Comment
Please, Sign In to add comment