Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local HeadlessGroup = Instance.new("Frame")
  5. local DesignUp1 = Instance.new("Frame")
  6. local DesignDown2 = Instance.new("Frame")
  7. local Discord = Instance.new("TextLabel")
  8. local Title = Instance.new("TextLabel")
  9. local UnderTitle = Instance.new("TextLabel")
  10. local TextButton = Instance.new("TextButton")
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. HeadlessGroup.Name = "HeadlessGroup"
  15. HeadlessGroup.Parent = ScreenGui
  16. HeadlessGroup.BackgroundColor3 = Color3.new(1, 1, 1)
  17. HeadlessGroup.Position = UDim2.new(0.0495031476, 0, 0.365476817, 0)
  18. HeadlessGroup.Size = UDim2.new(0, 241, 0, 178)
  19. HeadlessGroup.Style = Enum.FrameStyle.RobloxRound
  20.  
  21. DesignUp1.Name = "DesignUp1"
  22. DesignUp1.Parent = HeadlessGroup
  23. DesignUp1.BackgroundColor3 = Color3.new(1, 1, 1)
  24. DesignUp1.Position = UDim2.new(-0.0342216678, 0, -0.0485496931, 0)
  25. DesignUp1.Size = UDim2.new(0, 241, 0, 35)
  26. DesignUp1.Style = Enum.FrameStyle.RobloxRound
  27.  
  28. DesignDown2.Name = "DesignDown2"
  29. DesignDown2.Parent = HeadlessGroup
  30. DesignDown2.BackgroundColor3 = Color3.new(1, 1, 1)
  31. DesignDown2.Position = UDim2.new(-0.0342216678, 0, 0.827854812, 0)
  32. DesignDown2.Size = UDim2.new(0, 241, 0, 35)
  33. DesignDown2.Style = Enum.FrameStyle.RobloxRound
  34.  
  35. Discord.Name = "Discord"
  36. Discord.Parent = HeadlessGroup
  37. Discord.BackgroundColor3 = Color3.new(1, 1, 1)
  38. Discord.BackgroundTransparency = 1
  39. Discord.Position = UDim2.new(0.054785572, 0, 0.864979088, 0)
  40. Discord.Size = UDim2.new(0, 200, 0, 23)
  41. Discord.Font = Enum.Font.SourceSans
  42. Discord.Text = "Join Our Discord : fcuD8ZK"
  43. Discord.TextColor3 = Color3.new(1, 1, 1)
  44. Discord.TextSize = 22
  45.  
  46. Title.Name = "Title"
  47. Title.Parent = HeadlessGroup
  48. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  49. Title.BackgroundTransparency = 1
  50. Title.Position = UDim2.new(0.054785572, 0, -0.0507512763, 0)
  51. Title.Size = UDim2.new(0, 200, 0, 23)
  52. Title.Font = Enum.Font.SourceSans
  53. Title.Text = "PF Shitter v1"
  54. Title.TextColor3 = Color3.new(1, 1, 1)
  55. Title.TextSize = 22
  56.  
  57. UnderTitle.Name = "UnderTitle"
  58. UnderTitle.Parent = HeadlessGroup
  59. UnderTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  60. UnderTitle.BackgroundTransparency = 1
  61. UnderTitle.Position = UDim2.new(0.054785572, 0, 0.0222824309, 0)
  62. UnderTitle.Size = UDim2.new(0, 200, 0, 23)
  63. UnderTitle.Font = Enum.Font.SourceSans
  64. UnderTitle.Text = "GUI By Headless Devs"
  65. UnderTitle.TextColor3 = Color3.new(1, 1, 1)
  66. UnderTitle.TextSize = 18
  67.  
  68. TextButton.Parent = HeadlessGroup
  69. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  70. TextButton.Position = UDim2.new(0.054785572, 0, 0.246370465, 0)
  71. TextButton.Size = UDim2.new(0, 200, 0, 81)
  72. TextButton.Style = Enum.ButtonStyle.RobloxRoundButton
  73. TextButton.Font = Enum.Font.GothamBold
  74. TextButton.Text = "Execute Script"
  75. TextButton.TextColor3 = Color3.new(0, 0, 0)
  76. TextButton.TextSize = 22
  77. -- Scripts:
  78. function SCRIPT_LVDR90_FAKESCRIPT() -- TextButton.Script
  79. local script = Instance.new('Script')
  80. script.Parent = TextButton
  81. script.Parent.MouseButton1Click:connect(function()
  82. for i,player in pairs(game:GetService('Players'):GetPlayers()) do
  83. if player.TeamColor ~= game:GetService('Players').LocalPlayer.TeamColor then
  84. local weld = Instance.new('Weld',player.Character.Head)
  85. local part = Instance.new('Part',player.Character)
  86. part.Size = Vector3.new(2,2,2)
  87. part.Material = "Neon"
  88. part.Transparency = .7
  89. part.Anchored = true
  90. part.BrickColor = BrickColor.new('Really Green')
  91. part.CFrame = player.Character.Head.CFrame - Vector3.new(2,12,2)
  92. part.CanCollide = false
  93. weld.C0 = player.Character.Head.CFrame:inverse()
  94. weld.Part0 = player.Character.Head
  95. weld.C1 = part.CFrame:inverse()
  96. weld.Part1 = part
  97. spawn(function()
  98. while wait() do
  99. part.CFrame = player.Character.Head.CFrame - Vector3.new(3,12,3)
  100. end
  101. end)
  102. end
  103. end
  104. spawn(function()
  105. while wait() do
  106. while true do
  107. for i, v in pairs(game:GetService('Players'):GetChildren()) do
  108. if v.Name ~= game.Players.LocalPlayer.Name then
  109. if v.Character:FindFirstChild("Head") then
  110. if v.Character.HumanoidRootPart then
  111. v.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character:FindFirstChild("Head").CFrame + Vector3.new(0,12,0)
  112. end
  113. end
  114. end
  115. end
  116. end
  117. end)
  118. end)
  119.  
  120. end
  121. coroutine.resume(coroutine.create(SCRIPT_LVDR90_FAKESCRIPT))
  122. wait()
  123. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement