Advertisement
NMM

DivinedLineageScript

NMM
Jul 6th, 2021
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. while true do
  2. for i,v in pairs(game.Workspace.ArtifactsSpawned:GetChildren()) do
  3. if v then
  4. local espv = Instance.new("BillboardGui")
  5. local espvt = Instance.new("TextLabel")
  6. local alr = v:FindFirstChild("BillboardGui")
  7. local sound = Instance.new("Sound")
  8. if alr then
  9. print("cool")
  10. else
  11. sound.SoundId = "rbxassetid://225320558"
  12. sound.Parent = game.Workspace
  13. print("notcool")
  14. espvt.Parent = espv
  15. espv.AlwaysOnTop = true
  16. espv.Size = UDim2.new(0,50,0,50)
  17. espv.Parent = v
  18. espvt.Text = v.name
  19. espvt.Size = UDim2.new(0,50,0,50)
  20. espvt.TextScaled = true
  21. espvt.BackgroundTransparency = 1
  22. espvt.TextStrokeTransparency = 0
  23. espvt.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  24. espvt.TextColor3 = Color3.fromRGB(255, 0, 4)
  25. sound:Play()
  26. end
  27.  
  28.  
  29. end
  30.  
  31. end
  32. wait(0.3)
  33. sound:Destroy()
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement