Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- A quick script for Logo Quiz
- https://www.roblox.com/games/13333567382/Logo-Quiz
- This just gets all badges for you.
- ]]
- local Players = game:GetService("Players")
- local Workspace = game:GetService("Workspace")
- local LocalPlayer = Players.LocalPlayer
- local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
- for i,v in pairs(Workspace:GetDescendants()) do
- if v:IsA("TouchTransmitter") then
- 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
- firetouchinterest(Character.HumanoidRootPart, v.Parent, 1)
- firetouchinterest(Character.HumanoidRootPart, v.Parent, 0)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment