FE Gun Kit Gui Position Help

Ive recently Started Using FE Gun Kit and have this issue with the gun GUI,

I want to move the Mag and Ammo Up so its not Over my health and inventory Gui as they are in the same Area

But inserting it in starter Gui and moving it upwards then putting it back doesnt seem to do anything.

I figured the Gui is being Positioned by a script but cant Find any variables mentioning it, i think in GunScript Local.

Does anyone know what line in GunScriptLocal i have to change for the guis position?

where i position the GUI
whereiwantit to be

where the script move it to
whereit putsit

SOME ADDITIONAL INFORMATION:
Using The normal FE Gun Kit by Bluric

1 Like

Well first off, is the textlabel position scaled? Plus, can you show the scripts because there’s really nothing I know regarding the scripts.

FE Gun Kit adjusts the gui’s size through GunScript_Local, making possible to do that cool tweening effects of the ammo and stuff like that

But of course that just works with default gui, you have to replace your gui positions manually in that script.

Yeah ik, im trying to figure out what line in the script is moving it so i can change it

yes it is scaled. And i dont think i can share the whole local script as its pretty long. But its the FE Gun Kit Model by bluric

So ithink i found the line for the Gui but i cant tell WTh im even supposed to change

-- GUI.Frame.Position = (Module.ChargedShotAdvanceEnabled or Module.HoldAndReleaseEnabled) and (Module.MagCartridge and (Module.LimitedAmmoEnabled and UDim2.new(1, -260, 1, -190) or UDim2.new(1,-260,1,-140)) or (Module.LimitedAmmoEnabled and UDim2.new(1, -260, 1, -150) or UDim2.new(1, -260, 1, -105))) or (Module.MagCartridge and (Module.LimitedAmmoEnabled and UDim2.new(1, -260, 1, -150) or UDim2.new(1, -260, 1, -105)) or (Module.LimitedAmmoEnabled and UDim2.new(1, -260, 1, -110) or UDim2.new(1, -260, 1, -65)))

if any line has the words

GUI.Frame.Position

or

GUI.Frame.Size

Just delete it

3 Likes

This does Work!

Funny enough aswell i figured out you can change the positions and size too wich is what i decided to do