diff --git a/[francisco-create]/steering_pos/c.lua b/[francisco-create]/steering_pos/c.lua
new file mode 100644
index 000000000..207fc836e
--- /dev/null
+++ b/[francisco-create]/steering_pos/c.lua
@@ -0,0 +1,42 @@
+local tables = {}
+local whichkey = {
+ ["w"] = true,
+ ["a"] = true,
+ ["s"] = true,
+ ["d"] = true,
+}
+local binds = false
+addEventHandler("onClientVehicleStartExit",root,function()
+ if source then
+ local rx1, ry1, rz1 = getVehicleComponentRotation(source, "wheel_lf_dummy")
+ local rx2, ry2, rz2 = getVehicleComponentRotation(source, "wheel_rf_dummy")
+ tables[localPlayer] = {on = {"wheel_lf_dummy",rz1},arka = {"wheel_rf_dummy",rz2},araba = source}
+ binds = false
+ end
+end)
+
+addEventHandler("onClientVehicleStartEnter",root,function()
+ binds = true
+end)
+
+addEventHandler("onClientPedsProcessed",root,function()
+ local veri = tables[localPlayer] or {}
+ if veri then
+ local on = veri.on
+ local arka = veri.arka
+ local araba = veri.araba
+ if araba then
+ setVehicleComponentRotation(araba,on[1],0,0,on[2])
+ setVehicleComponentRotation(araba,arka[1],0,0,arka[2])
+ end
+ end
+end)
+addEventHandler("onClientKey",root,function(buton,pres)
+ if not pres then
+ return
+ end
+ if tables[localPlayer] == nil then return end
+ if whichkey[buton] and binds and getPedOccupiedVehicle(localPlayer) then
+ tables[localPlayer] = nil
+ end
+end)
\ No newline at end of file
diff --git a/[francisco-create]/steering_pos/meta.xml b/[francisco-create]/steering_pos/meta.xml
new file mode 100644
index 000000000..960ca090d
--- /dev/null
+++ b/[francisco-create]/steering_pos/meta.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/[francisco-create]/veh_ghost/client.lua b/[francisco-create]/veh_ghost/client.lua
new file mode 100644
index 000000000..23c06f26f
--- /dev/null
+++ b/[francisco-create]/veh_ghost/client.lua
@@ -0,0 +1,20 @@
+local how = 2
+function ghostmode_on()
+local playerVehicle = getPedOccupiedVehicle(localPlayer)
+if(playerVehicle) then
+if how == 2 then
+for i,v in pairs(getElementsByType("vehicle")) do
+setElementCollidableWith(v, playerVehicle, false)
+end
+how = 1
+outputChatBox("activate")
+else
+for i,v in pairs(getElementsByType("vehicle")) do
+setElementCollidableWith(v, playerVehicle, true)
+end
+how = 2
+outputChatBox("deactivate")
+end
+end
+end
+addCommandHandler("ghost", ghostmode_on)
\ No newline at end of file
diff --git a/[francisco-create]/veh_ghost/meta.xml b/[francisco-create]/veh_ghost/meta.xml
new file mode 100644
index 000000000..193f69269
--- /dev/null
+++ b/[francisco-create]/veh_ghost/meta.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file