so basically i am trying to make a gui/text shake in my game but when i do it, it doesn’t look good! i ran out of ideas on how i can make it look actually how i want it to, i tried looking at devforum but no luck. Here’s how i want it to look like:
local GUI = GUI
local info = TweenInfo.new(math.random(0.01,0.05))
local target = {Offset = GUI.Offset = math.random(0.1,0.05)}
local tweenService = game:GetService(“TweenService”)
local tween = tweenService:Create(GUI, info, target)
tween:Play()
Just a sketch, thsi probably needs to be in a Function
probably try with RunService add a function where the camera would move quickly, for the shaking, try using math.sin(x) and multiply it for how intense you want the shaking to be, and multiply the x by how fast you want it to shake.