Words of inspiration
- Locked due to inactivity on Aug 20, '20 3:54am
Thread Topic: Words of inspiration
-
-
I'm inspired
-
Wanna hear my extraordinarily boring sermon on planes which somehow relates to covid?
-
Sure
-
Ummm ok : Rocket launcher script
001 local Tool = script.Parent
002 local Launcher = Tool.Handle
003
004 local Rocket = Instance.new("Part")
005 Rocket.Locked = true
006 Rocket.BackSurface = 3
007 Rocket.BottomSurface = 3
008 Rocket.FrontSurface = 3
009 Rocket.LeftSurface = 3
010 Rocket.RightSurface = 3
011 Rocket.TopSurface = 3
012 Rocket.Size = Vector3.new(1, 2.5, 1)
013 Rocket.BrickColor = BrickColor.new(23)
014 Rocket.FormFactor = 3
015
016
017 local rocketMesh = Instance.new("SpecialMesh")
018 rocketMesh.MeshId = "[no urls]?id=31601976"
019 rocketMesh.TextureId = "[no urls]?id=31601599"
020 rocketMesh.Parent = Rocket
021
022 local debris = game:GetService("Debris")
023
024 local swooshSound
025 local explosionSound
026
027 local vCharacter
028 local vPlayer
029
030 function blow(hit, missile)
031 if missile == nil then return end
032 if swooshSound then swooshSound:stop() end
033 explosion = Instance.new("Explosion")
034 explosion.Position = missile.Position
035 -- find instigator tag
036 local creator = missile:FindFirstChild("creator")
037 explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
038 explosion.Parent = game.Workspace
039 if explosionSound then explosionSound:Play() end
040 wait(.1)
041 if missile then missile:Remove() end
042 end
043
044 function onPlayerBlownUp(part, distance, creator)
045 if part.Name == "Head" or part.Name == "Torso" then
046 local humanoid = part.Parent.Humanoid
047 tagHumanoid(humanoid, creator)
048 end
049 end
050
051 function tagHumanoid(humanoid, creator)
052 -- tag does not need to expire if all explosions lethal
053 if creator ~= nil then
054 local new_tag = creator:clone()
055 new_tag.Parent = humanoid
056 end
057 end
058
059 function fire(vTarget)
060 local vCharacter = Tool.Parent
061 local vHandle = Tool:findFirstChild("Handle")
062 if vHandle == nil then
063 print("Handle not found")
064 return
065 end
066 local direction = vTarget - vHandle.Position
067 direction = computeDirection(direction)
068 local missile = Rocket:clone()
069 local pos = vHandle.Position + (direction * 10.0)
070 missile.CFrame = CFrame.new(pos, pos + direction) * CFrame.Angles(math.pi/2, 0, 0)
071
072 local creator_tag = Instance.new("ObjectValue")
073
074 local vPlayer = game.Players:GetPlayerFromCharacter(vCharacter)
075
076 if vPlayer == nil then
077 print("Player not found")
078 else
079 if (vPlayer.Neutral == false) then -- nice touch
080 missile.BrickColor = vPlayer.TeamColor
081 end
082 end
083
084 local floatForce = Instance.new("BodyForce")
085 floatForce.force = Vector3.new(0, missile:GetMass() * 196.1, 0.0)
086 floatForce.Parent = missile
087
088 missile.Velocity = direction * 20000.0
089
090 creator_tag.Value = vPlayer
091 creator_tag.Name = "creator"
092 creator_tag.Parent = missile
093
094 missile.Parent = game.Workspace
095
096 if swooshSound then swooshSound:Play() end
097
098 missile.Touched:connect(function(hit) blow(hit, missile) end)
099
100 debris:AddItem(missile, 100.0)
101 end
102
103 function computeDirection(vec)
104 local lenSquared = vec.magnitude * vec.magnitude
105 local invSqrt = 1 / math.sqrt(lenSquared)
106 return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
107 end
108
109 Tool.Enabled = true
110 function onActivated()
111 if not Tool.Enabled then
112 return
113 end
114
115 Tool.Enabled = false
116
117 local character = Tool.Parent;
118 local humanoid = character.Humanoid
119 if humanoid == nil then
120 print("Humanoid not found")
121 return
122 end
123
124 swooshSound = Launcher:FindFirstChild("Swoosh")
125 explosionSound = Launcher:FindFirstChild("Explosion")
126
127 local targetPos = humanoid.TargetPoint
128
129 fire(targetPos)
130
131 wait(0.0)
132
133 Tool.Enabled = true
134 end
135
136
137 script.Parent.Activated:connect(onActivated) -
wut
-
^
-
Is everything ok here
-
I feel alone sometimes. But ok that I'm not.
I've got my friends and their loyalty
Ive got my friends who will always see the best in me
I've got my friends every step of the way
My friends no doubt will change the man I am today -
Denis- that's very moving
-
What if I’m a girl?
What if I have no friends, am I automatically hopeless?
If I did have friends would they be loyal?
How can I see my friends every step of the way if there’s fog blocking my view?
What if I don’t want my friends to change me? -
Take a drive Down the highway of life Give me five my friend Here we are We're together again And remembering when we met All the games All the jokes that we laughed at The pain that we shared And we knew That no matter what came Our bind would remain the same I can travel down any road Cause i know that I'm not alone I've got my friends and their loyalty I've got my friends who always see the best in me I've got my friends every step of the way My friends have helped to shape the man I am today Ohhh ohhh ohhhh ohhh Ohhh ohhh ohhhh ohhh All the years All the good and the bad You were there my friends And the times When I stumbled and fell You would help me get up again And the smiles That the memories bring Keep me going through everything There's a song That together we sing Sheves achim ma tov ma noim I can travel down any road Cause i know that I'm not alone I'm not alone I've got my friends and their loyalty I've got my friends who always see the best in me I've got my friends every step of the way My friends have helped to shape the man i am today Ohhh ohhh ohhhh ohhh Ohhh ohhh ohhhh ohhh I'm up and down the mountain And I'm not afraid I'm hangin with my friends I know they're with me all the way I know they're with me all the way I know they're with me all the way I know they're here with me to stay I've got my friends on the sunny days I've got my friends in thunderstorms and pouring rain And when I see them I know I'm okay My friends have helped to shape the man I am today I've got my friends I've got my friends I've got my friends I've got my friends I've got my friends
-
The highway of life has a lot of accidents. I don’t want to be tied to my friends forever.
I’m still not a man.
Pouring rain? No, it’s drizzling. -
You can be amazing You can turn a phrasing into a weapon or a drug You can be the outcast or be the backlash of somebody's lack of love Or you can start speaking love Nothings gonna hurt you the way that words and they settle neath your skin Gets on the inside no sunlight Sometimes the shadow ends But i wonder what would happen if You say what you want to say And let the words fall out Honestly I want to see you be brave With what you want to say And let the words fall out Honestly I want to see you be brave I just want to see you I just want to see you I just want to see you I want to see you be brave I just want to see you I just want to see you I just want to see you I want to see you be brave Everybody's been there Everybody's been stared down by the enemy Going for the fear and nothing disappearin' Bow down to the mighty Don't run Stop holding your tongue Maybe there's a way out of the cage where you live Maybe one of these days you can let the light in Show me How big your brave is Say what you want to say And let the words fall out Honestly I want to see you be brave With what you want to say And let the words fall out Honestly I want to see you be brave And since your history of silence won't do you any good Didn't think it would Let your words be anything but empty Why don't you tell them the truth Say what you want to say And let the words fall out Honestly I want to see you be brave With what you want to say And let the words fall out Honestly I want to see you be brave I just want to see you I just want to see you I just want to see you I want to see you be brave I just want to see you I just want to see you I just want to see you See you be brave I just want to see you I just want to see you I just want to see you I just want to see you I just want to see you I just want to see you
-
I see a light, reflection refraction Is it nothing more than a chemical reaction It flickers and grows, nobody knows How much we feel how quickly it goes Turn off the dark and vanquish the night Show the whole world for eight days at twilight Then and now they fought and we fight Fight for the right to live by our own light Let me see the light Give me something to live by Let me see the light I need something to live by Help me see myself in my reflection Shine tonight Let me shed the light in each direction Shining bright I wanna see the light A million times the speed of sound Fast enough to go around The world that we live in, so much cold and strife One little light to warm another life Fill the darkest night with the brightest light Cause it's time for you to shine A little dedication, a small illumination Just one person to change a whole nation Let me see the light Give me something to live by Let me see the light I need something to live by Help me see myself in my reflection Shine tonight Let me shed the light in each direction Shining bright I wanna see the light Is this spark that we sing of anything Hiding somewhere in between everything Let the colors burn in a brilliant burst Like a shooting star falling to the earth Help me see myself in my reflection Shine tonight Let me shed the light in each direction Shining bright Let me see myself in my reflection Shine tonight Let me shed the light in each direction Shining bright I wanna see the light.
Pages:
- 1
- 2
This thread is locked, therefore no new posts can be made.