Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- สคริป decmopile
- local viewedtarget = nil
- -- กําหนดค่า target เป็น nil (คือไม่มีไร)
- local function viewSoucre(target)
- if target:IsA("LocalScript") or target:IsA("ModuleScript") then
- viewedtarget = decompile(target)
- print("กําลังดูเนื่อหาสคริปของ: ", viewedtarget)
- else
- print("การ decmopile ไม่สําเร็จ")
- end
- end
- local targetname = game.Players.LocalPlayer.PlayerGui.ScreenGui.Shoot.FireGun
- viewSoucre(targetname)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement