A problem I am having with insert a gravity coil into the game is I have different gravity settings (100) however, the gravity coil code goes on a set number (196.20, default gravity) and since the gravity coil ‘cancels 75% of gravity’s effect on your character’ it means at 100, my character just gets rocketed into the air.
- Why is the script written like this and not workspace.Gravity?
- How can I edit this when using InsertService?
local Item = InsertService:LoadAsset(ItemData.ID):GetChildren()[1]
Item.Name = item
Item.Parent = player.Backpack
I know I could just have the item preloaded and write the script however I want, but, would rather just insert it into the game like so, otherwise I’d have to either have all catalog items preloaded into the repstorage, which is not ideal, or have it so only the gravity coil is reploaded in repstorage (also not ideal)