Advertisement
Domadicoof-28363

Untitled

Mar 24th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. _G.Part = true
  2.  
  3. spawn(function()
  4. game:GetService("RunService").Heartbeat:Connect(function()
  5. if _G.Part then
  6. if not game:GetService("Workspace"):FindFirstChild("LOL") then
  7. local LOL = Instance.new("Part")
  8. LOL.Name = "LOL"
  9. LOL.Parent = game.Workspace
  10. LOL.Anchored = true
  11. LOL.Transparency = 1
  12. LOL.Size = Vector3.new(30,-0.5,30)
  13. elseif game:GetService("Workspace"):FindFirstChild("LOL") then
  14. game.Workspace["LOL"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, -3.6, 0)
  15. end
  16. else
  17. if game:GetService("Workspace"):FindFirstChild("LOL") then
  18. game:GetService("Workspace"):FindFirstChild("LOL"):Destroy()
  19. end
  20. end
  21. end)
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement