Advertisement
robloxscript111

『Soft & Wet』 Your Bizarre Adventure

Feb 5th, 2023
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. -- ESP Function
  2. local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
  3. ESP:Toggle(true)
  4.  
  5. -- Settings
  6. ESP.Players = false
  7. ESP.TeamMates = false
  8. ESP.FaceCamera = true
  9. ESP.TeamColor = false
  10. ESP.BoxSize = Vector3.new(2.5,2.5,0)
  11. ESP.BoxShift = CFrame.new(0,0,0)
  12.  
  13. -- Colors Settings
  14. local notFound = BrickColor.new(235, 52, 216).Color
  15. local itemsColor = {
  16. ["Mysterious Arrow"] = Color3.fromRGB(235, 168, 52),
  17. ["Rokakaka"] = Color3.fromRGB(235, 52, 52),
  18. ["Pure Rokakaka"] = Color3.fromRGB(235, 52, 216),
  19. ["Lucky Arrow"] = Color3.fromRGB(235, 52, 216),
  20. ["Ribcage of The Saint's Corpse"] = Color3.fromRGB(153, 150, 145),
  21. ["Stell Ball"] = Color3.fromRGB(55, 235, 52),
  22. ["Zeppeli's Headband"] = Color3.fromRGB(55, 235, 52),
  23. ["Ancient Scroll"] = Color3.fromRGB(55, 235, 52),
  24. ["Quinton's Glove"] = Color3.fromRGB(55, 235, 52),
  25. ["Stone Mask"] = Color3.fromRGB(38, 38, 38),
  26. ["Gold Coin"] = Color3.fromRGB(242, 234, 10),
  27. ["Diamond"] = Color3.fromRGB(37, 153, 219),
  28. ["Dio's Diary"] = Color3.fromRGB(235, 52, 216),
  29. }
  30.  
  31. -- Get Items
  32. local items = workspace.Item_Spawns.Items
  33. for i, v in pairs(items:GetChildren()) do
  34. if v:FindFirstChild("MeshPart") then
  35. local name = v.ProximityPrompt.ObjectText
  36. local color = itemsColor[name]
  37.  
  38. if itemsColor[name] ~= nil then
  39. color = itemsColor[name]
  40. end
  41.  
  42. -- Add ESP
  43. ESP:Add(v, {
  44. Name = name,
  45. Color = color,
  46. IsEnabled = true
  47. })
  48. end
  49. end
  50.  
  51. items.ChildAdded:Connect(function(child)
  52. wait(1)
  53. if child:FindFirstChild("MeshPart") then
  54. local name = child.ProximityPrompt.ObjectText
  55. local color = itemsColor[name]
  56.  
  57. if itemsColor[name] ~= nil then
  58. color = itemsColor[name]
  59. end
  60.  
  61. -- Add ESP
  62. ESP:Add(child, {
  63. Name = name,
  64. Color = color,
  65. IsEnabled = true
  66. })
  67. end
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement