You can write your topic however you want, but you need to answer these questions:
- What do you want to achieve? Keep it simple and clear!
I want the sword to be able to point toward the mouse cursor no wonder where the mouse is compared to the radius of the circle and I want the sword to keep pointing in the direction of where the mouse is
- What is the issue? Include screenshots / videos if possible!
The issue is the model doesn’t point the mouse correctly
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I’ve asked GPT multiple times for help but it didn’t solve my problem and would still send the same code that does the same output every time I even tried to make a thread on the Roblox Forum to solve my problem
Code of the Sword
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local mouse = player:GetMouse()
local swordModel = ReplicatedStorage.Weapons:FindFirstChild("Warrior Sword"):Clone()
local handle = swordModel:FindFirstChild("Handle")
local sharpPart = swordModel:FindFirstChild("SHARP")
if not sharpPart then
warn("SHARP part is missing in the sword model!")
return
end
swordModel.PrimaryPart = sharpPart
swordModel.Parent = character
local radius = 5
local heightOffset = 2
RunService.RenderStepped:Connect(function()
if not character or not character.PrimaryPart then return end
local root = character.PrimaryPart.Position
local mousePos = mouse.Hit.Position
local direction = Vector3.new(mousePos.X - root.X, 0, mousePos.Z - root.Z).unit
local targetPosition = root + direction * radius + Vector3.new(0, heightOffset, 0)
swordModel:SetPrimaryPartCFrame(
CFrame.lookAt(targetPosition, targetPosition + direction) * CFrame.Angles(math.rad(90), 0, math.rad(180))
)
end)
Here’s the Model of the Sword