Advertisement
Awooslayer699

Untitled

Mar 13th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if game.PlaceId == 843468296 or game.PlaceId == 843495510 or game.PlaceId == 897312463 then
  2.  
  3. local char = workspace:WaitForChild("animefreak15439")
  4. if char then
  5.     local tool = Instance.new("Tool")
  6.     tool.Name = "Disrespect Sign"
  7.     tool.CanBeDropped = false
  8.     tool.GripPos = Vector3.new(1.5, -1, 0)
  9.     tool.GripForward = Vector3.new(0, 0, 1)
  10.     tool.GripRight = Vector3.new(1, 0, 0)
  11.     tool.GripUp = Vector3.new(0,0,1)
  12.     local part = Instance.new("Part",tool)
  13.     part.Name = "Handle"
  14.     tool.Parent = char
  15.     part.Material = Enum.Material.WoodPlanks
  16.     part.BrickColor = BrickColor.new("Burnt Sienna")
  17.     part.Size = Vector3.new(4, 2, .25)
  18.     local Bil = Instance.new("SurfaceGui",part)
  19.     Bil.Face = "Front"
  20.     local TL = Instance.new("TextLabel",Bil)
  21.     TL.Size = UDim2.new(1,0,1,0)
  22.     TL.BackgroundTransparency = 1
  23.     TL.TextScaled = true
  24.     TL.TextColor3 = Color3.fromRGB(255,255,255)
  25.     TL.TextStrokeTransparency = 0
  26.     TL.Font = Enum.Font.Code
  27.    
  28.     local mra = math.rad
  29.    
  30.     tool.Equipped:Connect(function()
  31.         local torso = char:WaitForChild("Torso")
  32.         if torso then
  33.             wait(1)
  34.             torso["Right Shoulder"].C0 = CFrame.new(1,1,0) * CFrame.Angles(0,mra(90),mra(90))
  35.             torso["Left Shoulder"].C0 = CFrame.new(-1,1,0) * CFrame.Angles(0,mra(-90),mra(180))
  36.             local weld = Instance.new("WeldConstraint",torso)
  37.             weld.Part0 = torso
  38.             weld.Part1 = char["Left Arm"]
  39.             weld.Name = "Weldl"
  40.            
  41.             local msgNum = math.random(1,4)
  42.             if msgNum==1 then
  43.                 TL.Text = "No."
  44.             elseif msgNum==2 then
  45.                 TL.Text = "Everybody is not happy with that."
  46.             elseif msgNum==3 then
  47.                 TL.Text = "Everybody disliked that."
  48.             elseif msgNum==4 then
  49.                 TL.Text = "Delete that script right now."
  50.             end
  51.         end
  52.     end)
  53.     tool.Unequipped:Connect(function()
  54.         if char:FindFirstChild("Weldl",true) then
  55.             char:FindFirstChild("Weldl",true):Destroy()
  56.         end
  57.         local torso = char.Torso
  58.         torso["Right Shoulder"].C0 = CFrame.new(1,.5,0) * CFrame.Angles(0,mra(90),0)
  59.         torso["Left Shoulder"].C0 = CFrame.new(-1,.5,0) * CFrame.Angles(0,mra(-90),0)
  60.     end)
  61. end
  62. else
  63.     while true do
  64.         local part = Instance.new("Part",workspace)
  65.     end
  66. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement