Hi, I am Evan.
I’m a programmer/scripter, GFX artist and UI Designer. I have been scripting for seven months, practising GFX for three months, and design UI for four months.
— Scripting —
Pathfinding
Sorry for the lag, here the script :
Script
local pathfindingService = game:GetService("PathfindingService")
local humanoid = script.Parent.Humanoid
local body = script.Parent:FindFirstChild("HumanoidRootPart") or script.Parent:FindFirstChild("Torso")
local destination = game.Workspace.Part1.Position
local path = pathfindingService:CreatePath()
path:ComputeAsync(body.Position, destination)
local waypoints = path:GetWaypoints()
for k, waypoint in pairs(waypoints) do
humanoid:MoveTo(waypoint.Position)
if waypoint.Action == Enum.PathWaypointAction.Jump then
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
end
humanoid.MoveToFinished:Wait()
end
Tweening
Here the script :
local TweenService = game:GetService("TweenService")
local part = script.Parent
local tweenInfo = TweenInfo.new(
4,
Enum.EasingStyle.Linear,
Enum.EasingDirection.Out,
5,
true,
0
)
local tween = TweenService:Create(part, tweenInfo, {Position = Vector3.new(29.75, 0.5, -28.25)})
tween:Play()
Cloud
Etc.
— GFX —
— UI Design —
I am available for 8 hours every day, except if my family have plans to go somewhere.
Contact discord for negotiate the price.
You can pay me with
Group funds
Roblox gift card
Gamepasses
For GFX, please send me your game lobby in the form of an .obj file.
For GUI, please tell me the theme of the UI.
Vector for the GUI will created with full resolution.
Discord : Xevanns#7131
Thanks for reading, have a nice day