darraghd493

Logo Quiz! Badge Script

Aug 30th, 2023
1,797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | Source Code | 0 0
  1. --[[
  2.     A quick script for Logo Quiz
  3.     https://www.roblox.com/games/13333567382/Logo-Quiz
  4.  
  5.     This just gets all badges for you.
  6. ]]
  7.  
  8. local Players = game:GetService("Players")
  9. local Workspace = game:GetService("Workspace")
  10.  
  11. local LocalPlayer = Players.LocalPlayer
  12. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  13.  
  14. for i,v in pairs(Workspace:GetDescendants()) do
  15.     if v:IsA("TouchTransmitter") then
  16.         if v.Parent.Name == v.Parent.Parent.Name and v.Parent:IsA("BasePart") and v.Parent.Parent:IsA("Model") and v.Parent.Parent:FindFirstChild("Parts") ~= nil then continue end -- Tool check
  17.  
  18.         firetouchinterest(Character.HumanoidRootPart, v.Parent, 1)
  19.         firetouchinterest(Character.HumanoidRootPart, v.Parent, 0)
  20.     end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment