diff --git a/src/ReplicatedStorage/ui/padding.tsx b/src/ReplicatedStorage/uiComponents/padding.tsx
similarity index 100%
rename from src/ReplicatedStorage/ui/padding.tsx
rename to src/ReplicatedStorage/uiComponents/padding.tsx
diff --git a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx
index c16eb09..2089b2f 100644
--- a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx
+++ b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx
@@ -1,7 +1,7 @@
import Roact from "@rbxts/roact"
import Slot from "./slot"
import { useWorldContext } from "../contexts/worldContext"
-import Padding from "ReplicatedStorage/ui/padding"
+import Padding from "ReplicatedStorage/uiComponents/padding"
import { StarterGui } from "@rbxts/services"
interface hotbarProps extends Roact.JsxInstanceProperties {
diff --git a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx
index 019453f..9bedcc1 100644
--- a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx
+++ b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx
@@ -2,7 +2,7 @@ import Roact from "@rbxts/roact"
import { useEffect } from "@rbxts/roact-hooked"
import { useWorldContext } from "../contexts/worldContext"
import { ContextActionService, HttpService } from "@rbxts/services"
-import Padding from "ReplicatedStorage/ui/padding"
+import Padding from "ReplicatedStorage/uiComponents/padding"
interface slotProps extends Roact.JsxInstanceProperties {
index: number