Hi there! I am offering my services as a builder, UI maker and animator. I have been developing for 1 year on Roblox and have previously worked on some little games like Cafes and also I worked for other big games too.
I don’t usually make games but I make models and I Sometimes take photo of my models and projects
SCRIPTS
Camera Shake (Realistic Walking)
local runService = game:GetService(“RunService”)
local character = script.Parent
local humanoid = character:WaitForChild(“Humanoid”)
function updateBobbleEffect()
local currentTime = tick()
if humanoid.MoveDirection.Magnitude > 0 then
local bobbleX = math.cos(currentTime * 10) * .35
local bobbleY = math.abs(math.sin(currentTime * 10)) * .35
local bobble = Vector3.new(bobbleX, bobbleY, 0)
humanoid.CameraOffset = humanoid.CameraOffset:lerp(bobble, .25)
else
humanoid.CameraOffset = humanoid.CameraOffset * .75
end
end
LEADERBOARD AND AUTO SAVE
local DataStoreService = game:GetService(“DataStoreService”)
local DataStore = DataStoreService:GetDataStore(“MoneyStats”) – Change this with a random name.
game.Players.PlayerAdded:Connect(function(Player)
local Leaderstats = Instance.new(“Folder”, Player)
Leaderstats.Name = “leaderstats”
local Currency = Instance.new(“IntValue”, Leaderstats)
Currency.Name = “Money” – Change this with your currency name.
Currency.Value = 0
local Data = DataStore:GetAsync(Player.UserId)
if Data then
Currency.Value = Data
end
end)
game.Players.PlayerRemoving:Connect(function(Player)
DataStore:SetAsync(Player.UserId, Player.leaderstats.Money.Value)
end)
runService.RenderStepped:Connect(updateBobbleEffect)
ANIMATIONS
FlipKick - Roblox
Knee - Roblox
Elbow - Roblox
(For Troll) - ComboFinish - Roblox
I accept Robux only and I also accept what you can best afford to me. The payments are 100+
I am available in this days, so you can hire me!
You can contact me here on the Developer Forum or in the Discord: ProGamerResul5566#9513
Thanks for reading!