so basically i have this script which like if i hold a fruit the proximity promt is gonna be visible then when you click e it changes your view and spawns the fruit you were holding beside it and i cant drag the fruit even tho the mouse changes and i did like a print and saw it prints dragging start and dragging end IT DOSENT MOVE```local rs = game:GetService("ReplicatedStorage")
local players = game:GetService("Players")
local tool
local fruitfolder = rs:WaitForChild("Fruits")
local container = script.Parent.Parent
local prompt = script.Parent
prompt.Enabled = false
local remev = rs:WaitForChild("yes")
remev.OnServerEvent:Connect(function(player,equiped,fruit)
if equiped then
prompt.Enabled = true
else
prompt.Enabled = false
end
tool = fruit
end)
local juicerremote = rs:WaitForChild("juicerremote")
local viewchanger = juicerremote:WaitForChild("veiwchanger")
prompt.Triggered:Connect(function(player)
viewchanger:FireClient(player,tool)
end)```
server script which makes the proximity prmt visible