Post Views: 76
Created by magnetwashere
Features:
- REACH
- DEV NOTES :
- execute script and it will automatically make ur glove huge asf each time u spawn, shows glove as big on some gloves, others doesnt show as big, regardless makes glove more transparent so u can see
local plr = game.Players.LocalPlayer
function supaSiza(v)
if v:IsA("Tool") then
v.Glove.Transparency = 0.75
v.Glove.Size = Vector3.new(25, 25, 25)
end
end
plr.Character.ChildAdded:Connect(supaSiza)
plr.CharacterAdded:Connect(function(char)
char.ChildAdded:Connect(supaSiza)
end)
Â