Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- InfiniteProximityPrompt Bypasse Code in game ...
- local Workspace = game:GetService("Workspace")
- local function configureInfinitePrompt(prompt: Instance)
- if prompt:IsA("ProximityPrompt") then
- prompt.HoldDuration = 0
- prompt.MaxActivationDistance = math.huge
- end
- end
- for _, descendant: Instance in ipairs(Workspace:GetDescendants()) do
- configureInfinitePrompt(descendant)
- end
- Workspace.DescendantAdded:Connect(configureInfinitePrompt)
Advertisement
Add Comment
Please, Sign In to add comment