Advertisement
Aeyao

flail

Apr 3rd, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. admins = "asbuff"
  2.  
  3. wait(1)
  4. print("Armflail (GLITCHY) by ASBF loaded")
  5.  
  6. oldanbient = game.Lighting.OutdoorAmbient
  7. gui = Instance.new("ScreenGui")
  8.  
  9.  
  10. gui.Parent = game.Players[admins].PlayerGui
  11.  
  12.  
  13.  
  14. frame = Instance.new("Frame")
  15. frame.Parent = gui
  16. frame.Size = UDim2.new(0.4, 0, 0.4, 0)
  17.  
  18.  
  19. button = Instance.new("TextButton")
  20. button.Parent = gui.Frame
  21. button.Size = UDim2.new(1, 0, 0.4, 0)
  22. button.Text = "FLAIL SOMEONES ARMS!"
  23.  
  24. imput = Instance.new("TextBox")
  25. imput.Parent = frame
  26. imput.Size = UDim2.new(1, 0, 0.4, 0)
  27. imput.Position = UDim2.new(0.0, 0, 0.4, 0)
  28. imput.Text = "Player name here"
  29.  
  30.  
  31. function onClick(v)
  32.  
  33. while true do
  34. wait()
  35. game.Players[imput.Text].Character.Torso["Left Shoulder"].C0 = game.Players[imput.Text].Character.Torso["Left Shoulder"].C0 * CFrame.Angles(math.random(0,180),math.random(0,180),math.random(0,180))
  36. game.Players[imput.Text].Character.Torso["Right Shoulder"].C0 = game.Players[imput.Text].Character.Torso["Right Shoulder"].C0 * CFrame.Angles(math.random(0,180),math.random(0,180),math.random(0,180))
  37. end
  38.  
  39. end
  40.  
  41. button.MouseButton1Down:connect(onClick)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement