Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. print'this was really simple to make or something'
  2. print'all i had to do is figure out how to use welds'
  3. print'because i dont have good knowledge in roblox xd'
  4.  
  5. local mlg = Instance.new("ScreenGui")
  6. local oof = Instance.new("Frame")
  7. local stick = Instance.new("TextButton")
  8. local nostick = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10.  
  11. mlg.Name = "mlg"
  12. mlg.Parent = game.CoreGui
  13.  
  14. oof.Name = "oof"
  15. oof.Active = true
  16. oof.Parent = mlg
  17. oof.BackgroundColor3 = Color3.fromRGB(100,100,0)
  18. oof.Position = UDim2.new(0.0721220523, 0, 0.377952754, 0)
  19. oof.Size = UDim2.new(0, 313, 0, 220)
  20. oof.Draggable = true
  21.  
  22. stick.Name = "stick"
  23. stick.Parent = oof
  24. stick.BackgroundColor3 = Color3.new(1, 1, 1)
  25. stick.Position = UDim2.new(0.0868167207, 0, 0.150000006, 0)
  26. stick.Size = UDim2.new(0, 257, 0, 71)
  27. stick.Font = Enum.Font.SourceSans
  28. stick.Text = "make everyone stick 2 u"
  29. stick.TextScaled = true
  30. stick.TextSize = 14
  31. stick.TextWrapped = true
  32.  
  33. nostick.Name = "nostick"
  34. nostick.Parent = oof
  35. nostick.BackgroundColor3 = Color3.new(1, 1, 1)
  36. nostick.Position = UDim2.new(0.0868167281, 0, 0.550000012, 0)
  37. nostick.Size = UDim2.new(0, 257, 0, 71)
  38. nostick.Font = Enum.Font.SourceSans
  39. nostick.Text = "make everyone stop sticking 2 u"
  40. nostick.TextScaled = true
  41. nostick.TextSize = 14
  42. nostick.TextWrapped = true
  43.  
  44. TextLabel.Parent = oof
  45. TextLabel.BackgroundColor3 = Color3.fromRGB(255,255,0)
  46. TextLabel.Size = UDim2.new(0, 313, 0, 19)
  47. TextLabel.Font = Enum.Font.SourceSans
  48. TextLabel.Text = "a stupid fe gui aaaa"
  49. TextLabel.TextScaled = true
  50. TextLabel.TextSize = 14
  51. TextLabel.TextWrapped = true
  52.  
  53. stick.MouseButton1Down:connect(function()
  54. for i,v in pairs (game.Players:GetChildren()) do
  55. local w = Instance.new("Weld",game.Players.LocalPlayer.Character.HumanoidRootPart)
  56. w.Name = "magical weld"
  57. w.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  58. w.Part1 = v.Character.Torso
  59. end
  60. end)
  61.  
  62. nostick.MouseButton1Down:connect(function()
  63. for i,v in pairs (game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do
  64. if v.Name == "magical weld" then
  65. v:Destroy()
  66. end
  67. end
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement