Advertisement
MrKix

Grand Piece Online [DF DETECTOR]

Nov 21st, 2020 (edited)
21,784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. -- It detect a SPAWNED fruit only if u are on the same island with that fruit. Also u must be atleast 300 meters away
  2.  
  3.  
  4. -- Made by MrKix#1233
  5. -- Instances:
  6. local BullShit = Instance.new("ScreenGui")
  7. local MyFrame = Instance.new("Frame")
  8. local ESP = Instance.new("TextLabel")
  9. BullShit.Name = "BullShit"
  10. BullShit.Parent = game.CoreGui
  11. BullShit.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. MyFrame.Name = "MyFrame"
  13. MyFrame.Parent = BullShit
  14. MyFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  15. MyFrame.BackgroundTransparency = 1.000
  16. MyFrame.Position = UDim2.new(0.683068037, 0, 0.885974944, 0)
  17. MyFrame.Size = UDim2.new(0, 438, 0, 100)
  18. ESP.Name = "ESP"
  19. ESP.Parent = MyFrame
  20. ESP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. ESP.BackgroundTransparency = 0.400
  22. ESP.Position = UDim2.new(0.119, 0, 0.37, 0)
  23. ESP.Size = UDim2.new(0, 350, 0, 50)
  24. ESP.Font = Enum.Font.SourceSans
  25. ESP.Text = "Waiting for a fruit to detect..."
  26. ESP.TextColor3 = Color3.fromRGB(0, 0, 0)
  27. ESP.TextSize = 16.000
  28. script.Parent = ESP
  29. print('Made by MrKix#1233')
  30. local guranteedsuke = game.Workspace.Env.Settings:FindFirstChild('Folder')
  31. if guranteedsuke then
  32. for i, v in pairs(guranteedsuke:GetDescendants()) do
  33. if v:IsA("Model") then
  34. spawn(function()
  35. while wait() and guranteedsuke.Parent ~= nil do
  36. local plr = game.Players.LocalPlayer
  37. local chara = plr.Character
  38. local fruitpos = v.PrimaryPart.Position
  39. local mypos = chara.HumanoidRootPart.Position
  40. ESP.Text = 'Distance: '..tostring(((fruitpos-mypos).Magnitude))
  41. end
  42. end)
  43. end
  44. end
  45. end
  46.  
  47.  
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement