Advertisement
DanPanMan

Koala/Blend Cafe Spill ESP

Apr 15th, 2020
646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.46 KB | None | 0 0
  1. local waitTime = 0.1
  2. local spill
  3. if game.PlaceId == 915545262 then
  4.         local spill = game.Workspace.ActiveSpills:GetChildren("Spill") 
  5.        
  6. game.Workspace.ActiveSpills.ChildAdded:Connect(function()
  7.    
  8. for i,v in pairs(spill) do
  9. wait(waitTime)
  10. local BillboardGui = Instance.new("BillboardGui")
  11. local Frame = Instance.new("Frame")
  12.  
  13. BillboardGui.Parent = v
  14. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15. BillboardGui.Active = true
  16. BillboardGui.AlwaysOnTop = true
  17. BillboardGui.LightInfluence = 1.000
  18. BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  19.  
  20. Frame.Parent = BillboardGui
  21. Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  22. Frame.BackgroundTransparency = 0.200
  23. Frame.Size = UDim2.new(0, 30, 0, 30)
  24. wait(waitTime)
  25. end
  26. end)
  27.    
  28. elseif game.PlaceId == 961426258 then
  29. game.Workspace["Spill Assets"].ChildAdded:Connect(function()
  30.         local spill = game.Workspace["Spill Assets"].Spills:GetChildren("DrinkSpill")
  31.         while true do
  32. for i,v in pairs(spill) do
  33.  
  34. local BillboardGui = Instance.new("BillboardGui")
  35. local Frame = Instance.new("Frame")
  36.  
  37. BillboardGui.Parent = v
  38. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  39. BillboardGui.Active = true
  40. BillboardGui.AlwaysOnTop = true
  41. BillboardGui.LightInfluence = 1.000
  42. BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  43.  
  44. Frame.Parent = BillboardGui
  45. Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  46. Frame.BackgroundTransparency = 0.200
  47. Frame.Size = UDim2.new(0, 30, 0, 30)
  48. wait(waitTime)
  49. end
  50. end
  51. end)
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement